mirror of
https://github.com/pret/pokeyellow.git
synced 2026-05-31 23:42:28 -05:00
11 lines
441 B
NASM
Executable File
11 lines
441 B
NASM
Executable File
; Loads tile patterns for tiles used in the pokedex.
|
|
LoadPokedexTilePatterns: ; 14000 (5:4000)
|
|
call LoadHpBarAndStatusTilePatterns
|
|
ld de,PokedexTileGraphics
|
|
ld hl,vChars2 + $600
|
|
lb bc, BANK(PokedexTileGraphics), (PokedexTileGraphicsEnd - PokedexTileGraphics) / $10
|
|
call CopyVideoData
|
|
ld de,PokeballTileGraphics
|
|
ld hl,vChars2 + $720
|
|
lb bc, BANK(PokeballTileGraphics), $01
|
|
jp CopyVideoData ; load pokeball tile for marking caught mons |