pokegold-spaceworld/home/tables.asm
Rangi42 5904823317
Some checks failed
CI / build (push) Has been cancelled
Remove executable permission from various files
2025-12-02 12:23:39 -05:00

28 lines
316 B
NASM

INCLUDE "constants.asm"
SECTION "home/tables.asm", ROM0
; find value a from table hl with row length de
; returns carry and row index b if successful
FindItemInTable:
ld b, 0
ld c, a
.loop
ld a, [hl]
cp -1
jr z, .fail
cp c
jr z, .success
inc b
add hl, de
jr .loop
.fail
and a
ret
.success
scf
ret