diff options
author | mid-kid <esteve.varela@gmail.com> | 2018-06-04 11:05:53 +0200 |
---|---|---|
committer | mid-kid <esteve.varela@gmail.com> | 2018-06-04 11:05:53 +0200 |
commit | 5e9c785b3f5c4638e61a0e58a11b79566a054636 (patch) | |
tree | 681ea4c043ed2c4d001ced844303151e66e3dcbf /home.asm | |
parent | 17087489c6b2466b1d4b2d22d7760604d3e755f8 (diff) | |
parent | d596a0c83bfbb97bff5cdb5b3bba925d3f798fa1 (diff) |
Merge branch 'master' of https://github.com/pret/pokecrystal
Diffstat (limited to 'home.asm')
-rw-r--r-- | home.asm | 21 |
1 files changed, 1 insertions, 20 deletions
@@ -227,26 +227,7 @@ CompareLong:: ; 31e4 ; 31f3 INCLUDE "home/tilemap.asm" - -SetHPPal:: ; 334e -; Set palette for hp bar pixel length e at hl. - call GetHPPal - ld [hl], d - ret -; 3353 - -GetHPPal:: ; 3353 -; Get palette for hp bar pixel length e in d. - ld d, HP_GREEN - ld a, e - cp (50 * 48 / 100) - ret nc - inc d ; HP_YELLOW - cp (21 * 48 / 100) - ret nc - inc d ; HP_RED - ret -; 335f +INCLUDE "home/hp_pals.asm" CountSetBits:: ; 0x335f ; Count the number of set bits in b bytes starting from hl. |