mirror of https://github.com/n64decomp/007.git
more work on rodata
Former-commit-id: 541cdeb1de2a1ce4ad729e2679748b652370ef69 [formerly 5d3ee235c2cb2fc74b4c3bfc7dd4d5676fb48db4] Former-commit-id: 62f7c58d4b521bbfa819b61fc855d5f932564585
This commit is contained in:
parent
d45bf7c745
commit
c3226494cd
|
@ -7,7 +7,7 @@ origin $00000000
|
||||||
|
|
||||||
include "rom/romheader.asm"
|
include "rom/romheader.asm"
|
||||||
include "code/boot.asm"
|
include "code/boot.asm"
|
||||||
include "rodata/rodata.inc"
|
include "rodata/rodata.rz.asm"
|
||||||
include "code/rarezip.asm"
|
include "code/rarezip.asm"
|
||||||
include "code/tlb_code.asm"
|
include "code/tlb_code.asm"
|
||||||
include "unk/unknown.asm"
|
include "unk/unknown.asm"
|
||||||
|
|
|
@ -27,7 +27,18 @@ dw sp_shed, aShed
|
||||||
dw sp_main, aMain
|
dw sp_main, aMain
|
||||||
dw sp_audi, aAudi
|
dw sp_audi, aAudi
|
||||||
|
|
||||||
insert rodata.bin_filler, "021990.bin", origin(), ($800283D0 - $8002307C)
|
dword_8002307C:
|
||||||
|
dw $00
|
||||||
|
|
||||||
|
dw $00, $00, $00, $00, $00
|
||||||
|
|
||||||
|
display_stderror:
|
||||||
|
dw $00
|
||||||
|
|
||||||
|
stderr_event_enabled:
|
||||||
|
dw $00
|
||||||
|
|
||||||
|
insert rodata.bin_filler, "021990.bin", origin(), ($800283D0 - $8002309C)
|
||||||
|
|
||||||
base $800283D0
|
base $800283D0
|
||||||
aBoot:
|
aBoot:
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
15dbcce479f33fa19157b68ee0c3e0d890f3e33f
|
|
@ -1,7 +1,3 @@
|
||||||
|
|
||||||
base origin()
|
|
||||||
rodata_rom_offset:
|
|
||||||
|
|
||||||
base $80020D90
|
base $80020D90
|
||||||
rodata_start:
|
rodata_start:
|
||||||
|
|
||||||
|
@ -17,9 +13,5 @@ dword_80023044:
|
||||||
base $80023048
|
base $80023048
|
||||||
cart_hw_address:
|
cart_hw_address:
|
||||||
|
|
||||||
insert rodata_rz, "021990.rz"
|
|
||||||
base $8005D2E0
|
base $8005D2E0
|
||||||
rodata_end:
|
rodata_end:
|
||||||
|
|
||||||
insert padding,"pad_to_33590"
|
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
base origin()
|
||||||
|
rodata_rom_offset:
|
||||||
|
|
||||||
|
include "rodata.inc"
|
||||||
|
insert rodata_rz, "021990.rz"
|
||||||
|
|
||||||
|
insert padding,"pad_to_33590"
|
||||||
|
|
|
@ -11,6 +11,9 @@
|
||||||
80023044 dword_80023044
|
80023044 dword_80023044
|
||||||
80023048 cart_hw_address
|
80023048 cart_hw_address
|
||||||
8002304c debug_handler_table
|
8002304c debug_handler_table
|
||||||
|
8002307c dword_8002307C
|
||||||
|
80023094 display_stderror
|
||||||
|
80023098 stderr_event_enabled
|
||||||
800283d0 aBoot
|
800283d0 aBoot
|
||||||
800283d8 aRmon
|
800283d8 aRmon
|
||||||
800283e0 aIdle
|
800283e0 aIdle
|
||||||
|
|
Loading…
Reference in New Issue