kep-hack/constants/map_data_constants.asm
Rangi c9c59dc343 Reorganize constants/
To do: add comments associating constants with data and code
2020-07-03 12:44:47 -04:00

10 lines
159 B
NASM
Executable file

; width of east/west connections
; height of north/south connections
MAP_BORDER EQU 3
; connection directions
EAST EQU 1
WEST EQU 2
SOUTH EQU 4
NORTH EQU 8