diff options
author | YamaArashi <shadow962@live.com> | 2016-01-23 12:25:42 -0800 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-01-23 12:25:42 -0800 |
commit | 1362b60f3467f0894d55e82f3294980b6373021d (patch) | |
tree | c53b76333cbb099df9e12dfe7ebfc56bd258b707 /asm/rom_header.s |
Initial commit
Diffstat (limited to 'asm/rom_header.s')
-rw-r--r-- | asm/rom_header.s | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/asm/rom_header.s b/asm/rom_header.s new file mode 100644 index 000000000..cd832dbde --- /dev/null +++ b/asm/rom_header.s @@ -0,0 +1,36 @@ +RomHeaderNintendoLogo: + .incbin "baserom.gba", 0x4, 0xA0 - 0x4 + +RomHeaderGameTitle: + .ascii "POKEMON RUBY" + +RomHeaderGameCode: + .ascii "AXVE" + +RomHeaderMakerCode: + .ascii "01" + +RomHeaderMagic: + .byte 0x96 + +RomHeaderMainUnitCode: + .byte 0 + +RomHeaderDeviceType: + .byte 0 + +RomHeaderReserved1: + .rept 7 + .byte 0 + .endr + +RomHeaderSoftwareVersion: + .byte 0 + +RomHeaderChecksum: + .byte 0x41 + +RomHeaderReserved2: + .rept 2 + .byte 0 + .endr |