diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2020-05-18 09:22:04 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2020-05-18 09:22:04 -0400 |
commit | c5631c5cd7f72ec5b99fea4ccdeee9a23c7c3920 (patch) | |
tree | 921266e9f8155a6db49a90b7f3a672601da5c1b3 | |
parent | 4a22e65c9651b77b3e48c1ac2b590b9edcf9f5f7 (diff) |
Fix ROM control data types
-rw-r--r-- | asm/rom_header.s | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/asm/rom_header.s b/asm/rom_header.s index 1fcc794f..6faa82f5 100644 --- a/asm/rom_header.s +++ b/asm/rom_header.s @@ -85,10 +85,7 @@ ARM7OverlaySize: .word 0 .global ROMControlInfo1 ROMControlInfo1: - .word 0x00416657 - .global ROMControlInfo2 -ROMControlInfo2: - .word 0x081808F8 + .byte 0x57, 0x66, 0x41, 0x00, 0xf8, 0x08, 0x18, 0x08 .global IconTitleOffset IconTitleOffset: .word 0x338600 @@ -97,7 +94,7 @@ SecureAreaCC: .short 0x5931 .global ROMControlInfo3 ROMControlInfo3: - .short 0x0D7E + .byte 0x7E, 0x0D .global ARM9AutoLoadHook ARM9AutoLoadHook: .extern _start_AutoloadDoneCallback |