1
0
mirror of https://github.com/stid/woz64.git synced 2024-06-02 07:41:46 +00:00
woz64/mem_map.asm
2019-11-05 20:31:17 -08:00

20 lines
495 B
NASM

.filenamespace MemMap
#importonce
.const base = $10
.namespace SCREEN_SPACE {
.label TempVideoPointer = base // W
.label TempStringPointer = base+2 // W
.label CursorCol = base+4
.label CursorRow = base+5
.label tempY = base+6
}
.namespace MATH_SPACE {
.label factor1 = base+7
.label factor2 = base+8
.label multiTmpX = base+9
.label result = base+10 // W
}