diff options
author | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2020-04-12 17:17:21 -0400 |
---|---|---|
committer | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2020-04-12 17:17:21 -0400 |
commit | f2052ca8ef06f858037d6657b377197dd8772f4c (patch) | |
tree | da8148e532f6cfd49f8cd96fd563c726161f89e5 /asm | |
parent | 41fa994a86914812d866f4822c0f55a6ed073c39 (diff) |
more work
Diffstat (limited to 'asm')
-rw-r--r-- | asm/main.s | 4 | ||||
-rw-r--r-- | asm/rom_header.s | 6 |
2 files changed, 5 insertions, 5 deletions
@@ -2,8 +2,8 @@ .text - arm_func_start Main -Main: @ 0x02000800 + arm_func_start Entry +Entry: @ 0x02000800 mov ip, #0x4000000 str ip, [ip, #0x208] _02000808: diff --git a/asm/rom_header.s b/asm/rom_header.s index e850d0f8..a8583e2b 100644 --- a/asm/rom_header.s +++ b/asm/rom_header.s @@ -29,11 +29,11 @@ RomVersion: .space 1 ARM9ROMOffset: -.word 0x00004000 +.word _rom_codeSegmentRomStart ARM9EntryAddress: -.word 0x02000800 +.word Entry ARM9RAMAddress: -.word 0x02000000 +.word _rom_codeSegmentStart ARM9CodeSize: .word 0x00107724 ARM7ROMOffset: |