mirror of
https://github.com/pret/pokeyellow.git
synced 2026-04-24 23:46:48 -05:00
13 lines
173 B
NASM
13 lines
173 B
NASM
; Boolean checks
|
|
DEF FALSE EQU 0
|
|
DEF TRUE EQU 1
|
|
|
|
; flag operations
|
|
const_def
|
|
const FLAG_RESET ; 0
|
|
const FLAG_SET ; 1
|
|
const FLAG_TEST ; 2
|
|
|
|
; input
|
|
DEF NO_INPUT EQU 0
|