diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-07-09 14:51:48 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-07-09 14:51:48 -0400 |
commit | 3e572b6f48b81e5340980c13b1b37b2907942713 (patch) | |
tree | c994a1ca8f587d674e680ec808e7fcbaab4d053d /constants/misc_constants.asm | |
parent | 676a35f76f93dfe18678a832fa63d8b684c34c45 (diff) |
Use const_skip and const_next macros for brevity
Diffstat (limited to 'constants/misc_constants.asm')
-rw-r--r-- | constants/misc_constants.asm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/constants/misc_constants.asm b/constants/misc_constants.asm index 6e4c5f93..1bb32f8e 100644 --- a/constants/misc_constants.asm +++ b/constants/misc_constants.asm @@ -3,6 +3,7 @@ FALSE EQU 0 TRUE EQU 1 ; flag operations -FLAG_RESET EQU 0 -FLAG_SET EQU 1 -FLAG_TEST EQU 2 + const_def + const FLAG_RESET ; 0 + const FLAG_SET ; 1 + const FLAG_TEST ; 2 |