diff options
author | Daniel Harding <33dannye@gmail.com> | 2020-05-09 15:40:25 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-09 15:40:25 -0500 |
commit | 53bab0a246719227b1558dfce636e7d0b21d6db0 (patch) | |
tree | c314fc99467d6c65cc4f46b0848cde3746396517 /src/macros/constants.asm | |
parent | 8fb0069491e06d994e4d1ce122b4758eb2c6ef5f (diff) | |
parent | 29ed945c4adce0b6bc45be3964f95393d8248390 (diff) |
Merge pull request #68 from anmart/master
they are of arbitrary length, many are 1 bit though
_Originally posted by @anmart in https://github.com/pret/poketcg/pull/68/files_
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 |