mirror of
https://github.com/thornAvery/kep-hack.git
synced 2026-02-23 07:32:19 +13:00
Move all code out of home.asm into home/
This results in 64 home/*.asm files, comparable to pokecrystal's 57.
This commit is contained in:
parent
51ac538c25
commit
bbf2f51a02
35 changed files with 1754 additions and 1758 deletions
21
home/array.asm
Normal file
21
home/array.asm
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
; skips a text entries, each of size NAME_LENGTH (like trainer name, OT name, rival name, ...)
|
||||
; hl: base pointer, will be incremented by NAME_LENGTH * a
|
||||
SkipFixedLengthTextEntries::
|
||||
and a
|
||||
ret z
|
||||
ld bc, NAME_LENGTH
|
||||
.skipLoop
|
||||
add hl, bc
|
||||
dec a
|
||||
jr nz, .skipLoop
|
||||
ret
|
||||
|
||||
AddNTimes::
|
||||
; add bc to hl a times
|
||||
and a
|
||||
ret z
|
||||
.loop
|
||||
add hl, bc
|
||||
dec a
|
||||
jr nz, .loop
|
||||
ret
|
||||
Loading…
Add table
Add a link
Reference in a new issue