diff options
author | Arisotura <thetotalworm@gmail.com> | 2023-10-30 18:37:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-30 18:37:49 +0100 |
commit | 9a450f5f28969cfa601ceda5f225cc1f03243374 (patch) | |
tree | 717c933ce1572f5ecd403a7ea8bb7f4bd2754db0 /src/Savestate.h | |
parent | 21590b070976f8fe343fdc44d4fee599cbda94f4 (diff) |
RTC revamp (#1867)
* get this started
* implement DSi RTC commands
* set up RTC clock timer. lay down basic idea of a clock.
* make the date/time registers writable
* move RTC state to its own structure, to make it easier to deal with
* more RTC work
lay base for date/time dialog
* get the bulk of the RTC functionality going
* much simpler design for RTC stuff
* aha, that is what it is
* start working on the RTC IRQ
* implement all types of RTC IRQ
* start refining sleep mode. code still kinda sucks.
* implement keypad IRQ
* refine it some more
* shut the fuck uuuuuupppppppppppppp
Diffstat (limited to 'src/Savestate.h')
-rw-r--r-- | src/Savestate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Savestate.h b/src/Savestate.h index 235d1fb..6707f9f 100644 --- a/src/Savestate.h +++ b/src/Savestate.h @@ -24,7 +24,7 @@ #include <stdio.h> #include "types.h" -#define SAVESTATE_MAJOR 10 +#define SAVESTATE_MAJOR 11 #define SAVESTATE_MINOR 1 class Savestate |