diff options
author | libjet <libj3t@gmail.com> | 2020-03-15 00:17:02 +0000 |
---|---|---|
committer | libjet <libj3t@gmail.com> | 2020-03-15 00:17:02 +0000 |
commit | 76216e6ce5de8a78cfd9312eb08dbb127b4d34d0 (patch) | |
tree | daa241c9541bd7f66aea7220cd4da5efb9a8069a /home/tilemap.asm | |
parent | 1ddf04da73b8784a08c679b73f576923768f97cf (diff) |
Small home/ reorganization
Diffstat (limited to 'home/tilemap.asm')
-rwxr-xr-x | home/tilemap.asm | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/home/tilemap.asm b/home/tilemap.asm index cac86189..04cbd474 100755 --- a/home/tilemap.asm +++ b/home/tilemap.asm @@ -198,4 +198,22 @@ GetSGBLayout:: ret z .sgb - predef_jump LoadSGBLayout
\ No newline at end of file + predef_jump LoadSGBLayout + +SetHPPal:: +; Set palette for hp bar pixel length e at hl. + call GetHPPal + ld [hl], d + ret + +GetHPPal:: +; Get palette for hp bar pixel length e in d. + ld d, HP_GREEN + ld a, e + cp (HP_BAR_LENGTH_PX * 50 / 100) ; 24 + ret nc + inc d ; HP_YELLOW + cp (HP_BAR_LENGTH_PX * 21 / 100) ; 10 + ret nc + inc d ; HP_RED + ret
\ No newline at end of file |