Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pret
GitHub Repository: pret/pokered
Path: blob/master/constants/misc_constants.asm
1270 views
1
; Boolean checks
2
DEF FALSE EQU 0
3
DEF TRUE EQU 1
4
5
; flag operations
6
const_def
7
const FLAG_RESET ; 0
8
const FLAG_SET ; 1
9
const FLAG_TEST ; 2
10
11
; input
12
DEF NO_INPUT EQU 0
13
14
; SGB command MLT_REQ can be used to detect SGB hardware
15
DEF JOYP_SGB_MLT_REQ EQU %00000011
16
17