diff options
author | WaluigiWare64 <68647953+WaluigiWare64@users.noreply.github.com> | 2021-01-03 15:53:23 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-03 15:53:23 +0000 |
commit | 83648f2d3109bf16ac6f2317ab772803af11f482 (patch) | |
tree | e8207c55c4ae052ba07713892e998ab9050e9301 /src/NDS.h | |
parent | f070eafce473c49979cfe8ec1d2dd65de9084884 (diff) | |
parent | cb58a422ac59f40825f7a7c2e9b75237eb04637d (diff) |
Merge branch 'master' into feature/zip-support
Diffstat (limited to 'src/NDS.h')
-rw-r--r-- | src/NDS.h | 15 |
1 files changed, 6 insertions, 9 deletions
@@ -54,13 +54,12 @@ enum Event_MAX }; -typedef struct +struct SchedEvent { void (*Func)(u32 param); u64 Timestamp; u32 Param; - -} SchedEvent; +}; enum { @@ -121,21 +120,19 @@ enum IRQ2_DSi_MicExt }; -typedef struct +struct Timer { u16 Reload; u16 Cnt; u32 Counter; u32 CycleShift; +}; -} Timer; - -typedef struct +struct MemRegion { u8* Mem; u32 Mask; - -} MemRegion; +}; extern int ConsoleType; extern int CurCPU; |