mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08:00
15 lines
177 B
NASM
15 lines
177 B
NASM
|
PrintMoveDesc:
|
||
|
push hl
|
||
|
ld hl, MoveDescriptions
|
||
|
ld a, [wCurSpecies]
|
||
|
dec a
|
||
|
ld c, a
|
||
|
ld b, 0
|
||
|
add hl, bc
|
||
|
add hl, bc
|
||
|
ld a, [hli]
|
||
|
ld e, a
|
||
|
ld d, [hl]
|
||
|
pop hl
|
||
|
jp PlaceString
|