summaryrefslogtreecommitdiff
path: root/src/constants/gfx_constants.asm
blob: 61f49b8252453ec8aff7af13f6326647902d6513 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
; screen size
SCREEN_WIDTH  EQU 20 ; tiles
SCREEN_HEIGHT EQU 18 ; tiles

; background map size
BG_MAP_WIDTH  EQU 32 ; tiles
BG_MAP_HEIGHT EQU 32 ; tiles

; cgb palette size
CGB_PAL_SIZE EQU 8 ; bytes
palettes EQUS "* CGB_PAL_SIZE"

; tile size
TILE_SIZE EQU 16 ; bytes
tiles EQUS "* TILE_SIZE"

TILE_SIZE_1BPP EQU 8 ; bytes
tiles_1bpp EQUS "* TILE_SIZE_1BPP"