mirror of
https://github.com/pret/pokered.git
synced 2026-05-09 04:03:05 -05: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
|