diff options
author | YamaArashi <shadow962@live.com> | 2015-07-19 20:45:34 -0700 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2015-07-19 20:45:34 -0700 |
commit | db7d941d22d89cf8d6d13cbf768208c5cf2ac2c2 (patch) | |
tree | 4dcd58e0fe7ac33bf38817f423754dc758cb902f /constants | |
parent | 1d86932cc9c38815434409f07d14c2bfe4e7a836 (diff) |
constants for flag actions
Diffstat (limited to 'constants')
-rw-r--r-- | constants/misc_constants.asm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/constants/misc_constants.asm b/constants/misc_constants.asm index cb167da6..68090c78 100644 --- a/constants/misc_constants.asm +++ b/constants/misc_constants.asm @@ -133,6 +133,12 @@ PLAYER_DIR_LEFT EQU (1 << PLAYER_DIR_BIT_LEFT) PLAYER_DIR_DOWN EQU (1 << PLAYER_DIR_BIT_DOWN) PLAYER_DIR_UP EQU (1 << PLAYER_DIR_BIT_UP) +; flag operations + +FLAG_RESET EQU 0 +FLAG_SET EQU 1 +FLAG_TEST EQU 2 + ; serial ESTABLISH_CONNECTION_WITH_INTERNAL_CLOCK EQU $01 |