diff options
Diffstat (limited to 'x86')
-rw-r--r-- | x86/x86_stub.S | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/x86/x86_stub.S b/x86/x86_stub.S index ba997ba..9a7e359 100644 --- a/x86/x86_stub.S +++ b/x86/x86_stub.S @@ -69,6 +69,8 @@ .global _memory_map_read .global _memory_map_write .global _reg +.global _palette_ram +.global _palette_ram_converted .global _oam_update @@ -561,6 +563,10 @@ return_to_main: _reg: .space 0x100, 0 +_palette_ram: + .space 0x400 +_palette_ram_converted: + .space 0x400 .comm _memory_map_read 0x8000 .comm _memory_map_write 0x8000 |