summaryrefslogtreecommitdiff
path: root/constants/gfx_constants.asm
diff options
context:
space:
mode:
authorRemy Oukaour <remy.oukaour@gmail.com>2018-01-18 11:16:24 -0500
committerRemy Oukaour <remy.oukaour@gmail.com>2018-01-18 11:16:24 -0500
commit226d1812b34dad7ee0bb758c4c4970a731c9c79e (patch)
tree0bf722b4df1ab0376faa6b6590a573bde116b787 /constants/gfx_constants.asm
parent99f26a60973b33185d46720edfad8067c35e1a5a (diff)
Only graphics data goes in gfx/
Introduce PALRGB_WHITE constant for $7fff
Diffstat (limited to 'constants/gfx_constants.asm')
-rw-r--r--constants/gfx_constants.asm2
1 files changed, 2 insertions, 0 deletions
diff --git a/constants/gfx_constants.asm b/constants/gfx_constants.asm
index 0104af9f1..864a4bd50 100644
--- a/constants/gfx_constants.asm
+++ b/constants/gfx_constants.asm
@@ -4,6 +4,8 @@ LEN_2BPP_TILE EQU 2 * TILE_WIDTH ; bytes
NUM_PAL_COLORS EQU 4
+PALRGB_WHITE EQUS "palred 31 + palgreen 31 + palblue 31" ; $7fff
+
SCREEN_WIDTH EQU 20 ; tiles
SCREEN_HEIGHT EQU 18 ; tiles
SCREEN_WIDTH_PX EQU SCREEN_WIDTH * TILE_WIDTH ; pixels