mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08:00
gfx/*.asm files have INCBINs
This commit is contained in:
parent
ee4ec65fc1
commit
7de7441e72
@ -6,7 +6,7 @@ tileset: MACRO
|
||||
ENDM
|
||||
|
||||
; Associated data:
|
||||
; - The *GFX, *Meta, and *Coll are defined in data/tileset_data.asm
|
||||
; - The *GFX, *Meta, and *Coll are defined in gfx/tilesets.asm
|
||||
; - The *Anim are defined in engine/tileset_anims.asm
|
||||
; - The *PalMap are defined in gfx/tilesets/palette_maps.asm
|
||||
|
||||
|
@ -5,13 +5,13 @@ LoadMapGroupRoof:: ; 1c000
|
||||
ld hl, MapGroupRoofs
|
||||
add hl, de
|
||||
ld a, [hl]
|
||||
cp $ff
|
||||
cp -1
|
||||
ret z
|
||||
ld hl, Roofs
|
||||
ld bc, $90
|
||||
ld bc, 9 tiles
|
||||
call AddNTimes
|
||||
ld de, vTiles2 tile $0a
|
||||
ld bc, $90
|
||||
ld bc, 9 tiles
|
||||
call CopyBytes
|
||||
ret
|
||||
; 1c021
|
||||
|
@ -1,4 +1,5 @@
|
||||
tilepal: MACRO
|
||||
; used in gfx/tilesets/*_palette_map.asm
|
||||
; vram bank, pals
|
||||
x = \1 << OAM_TILE_BANK
|
||||
rept (_NARG +- 1) / 2
|
||||
|
Loading…
Reference in New Issue
Block a user