Advertisement
PikalaxALT

Untitled

Apr 4th, 2016
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. GenderSpecificLookup:
  2.     ; species index in a
  3.     ; pointer table in hl (dbbw SPECIES, BANK(Pointer), Pointer)
  4.     ; return pointer b:hl, sets carry if found
  5.     ; carry flag cleared if not found, no useful pointer information is returned in that case
  6.     ld de, 4
  7.     call IsInArray
  8.     jr nc, .nope
  9.     call GetGender
  10.     jr c, .nope
  11.     jr nz, .nope
  12.     ld a, [hli]
  13.     ld b, a
  14.     ld a, [hli]
  15.     ld h, [hl]
  16.     ld l, a
  17.     scf
  18.     ret
  19.  
  20. .nope
  21.     and a
  22.     ret
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement