Move compass counts to ROM and trackable RAM
Add flag if compass HUD count has been displayed in SRAM Move low hearts fix from tables.asm to bugfixes.asm Rearrange dungeon stats in SRAM to match door rando ROM
This commit is contained in:
18
ram.asm
Normal file
18
ram.asm
Normal file
@@ -0,0 +1,18 @@
|
||||
;================================================================================
|
||||
; RAM Labels & Assertions
|
||||
;--------------------------------------------------------------------------------
|
||||
; Labels for values in WRAM and assertions that ensure they're correct and
|
||||
; at the expected addresses. All values larger than one byte are little endian.
|
||||
;--------------------------------------------------------------------------------
|
||||
; Placeholder and for compass item max count allocations, still WIP
|
||||
;--------------------------------------------------------------------------------
|
||||
CompassTotalsWRAM = $7F5410
|
||||
|
||||
;================================================================================
|
||||
; RAM Assertions
|
||||
;--------------------------------------------------------------------------------
|
||||
macro assertRAM(label, address)
|
||||
assert <label> = <address>, "<label> labeled at incorrect address."
|
||||
endmacro
|
||||
|
||||
%assertRAM(CompassTotalsWRAM, $7F5410)
|
||||
Reference in New Issue
Block a user