diff options
author | dannye <33dannye@gmail.com> | 2020-05-09 17:55:08 -0500 |
---|---|---|
committer | dannye <33dannye@gmail.com> | 2020-05-09 17:55:08 -0500 |
commit | ff2d704ab42fdabb33a222a497d15ddb84bd314f (patch) | |
tree | 72a8e6feeb6551cf13ba99ff3aa1710fd8e3674c /src/macros/constants.asm | |
parent | e4f2842b0e3e6ecc51ef109f895a1f6f79c3956b (diff) | |
parent | 6c74edb245a25feaf202f9ee101774be9155bf48 (diff) |
Merge branch 'master' of https://github.com/pret/poketcg
Diffstat (limited to 'src/macros/constants.asm')
-rw-r--r-- | src/macros/constants.asm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/macros/constants.asm b/src/macros/constants.asm index 177fcd6..264e3ed 100644 --- a/src/macros/constants.asm +++ b/src/macros/constants.asm @@ -10,3 +10,8 @@ const: MACRO \1 EQU const_value const_value = const_value + 1 ENDM + +flag_def: MACRO + db \1 + db \2 +ENDM |