diff options
Diffstat (limited to 'constants.asm')
-rw-r--r-- | constants.asm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/constants.asm b/constants.asm index c60d4a044..cc9e55474 100644 --- a/constants.asm +++ b/constants.asm @@ -31,6 +31,10 @@ TX_FAR: MACRO db BANK(\1) ENDM +RGB: MACRO + dw ((\3 << 10) | (\2 << 5) | (\1)) + ENDM + ; eventually replace with python macro note: MACRO db \1 |