diff options
author | Rangi <remy.oukaour+rangi@gmail.com> | 2020-08-09 15:16:31 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi@gmail.com> | 2020-08-09 15:16:31 -0400 |
commit | 9c229cde440bc6f68343331ad7bc6e1a52a742f0 (patch) | |
tree | 3bc08aaca7e09ae9933a11dbdcdc545b90d5b343 /home/tables.asm | |
parent | a75c6619fb933dc2d4c94b24394fb6fa9335b3b1 (diff) |
Clean up some code in home/
Diffstat (limited to 'home/tables.asm')
-rwxr-xr-x | home/tables.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/home/tables.asm b/home/tables.asm index e5d9c1e..c005ffc 100755 --- a/home/tables.asm +++ b/home/tables.asm @@ -4,7 +4,7 @@ SECTION "home/tables.asm", ROM0 ; find value a from table hl with row length de ; returns carry and row index b if successful -FindItemInTable: ; 00:35F8 +FindItemInTable: ld b, 0 ld c, a @@ -24,4 +24,4 @@ FindItemInTable: ; 00:35F8 .success scf - ret
\ No newline at end of file + ret |