mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-16 18:30:50 +12:00
10 lines
159 B
NASM
Executable file
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
|