diff options
Diffstat (limited to 'arm9/source/core.h')
-rw-r--r-- | arm9/source/core.h | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/arm9/source/core.h b/arm9/source/core.h index fde13a7..ec3f2fc 100644 --- a/arm9/source/core.h +++ b/arm9/source/core.h @@ -2,11 +2,12 @@ #define CORE_H_ #include "devices/system.h" + #include "devices/memory.h" + #include "devices/math.h" #include "devices/clock.h" #include "devices/input.h" - #include "devices/math.h" #include "devices/screen.h" - #include "devices/memory.h" + #include "devices/file.h" #define WST br->wst #define RST br->rst @@ -74,12 +75,13 @@ ProgramMemory prg; // program memory StackMemory wst, rst; // working and return stacks - SystemDevice sys; - MemoryDevice mem; - MathDevice math; - ClockDevice clk; - InputDevice inp; - ScreenDevice scr; + SystemDevice sys; + MemoryDevice mem; + MathDevice math; + ClockDevice clk; + InputDevice inp; + ScreenDevice scr; + FileDevice fs; } Bedrock; void reset_br(Bedrock *br); |