From fac958b280056922a1828b71a04d84a36e1e807a Mon Sep 17 00:00:00 2001 From: Rangi Date: Sun, 20 Sep 2020 13:58:03 -0400 Subject: - Remove trailing whitespace - Indent with single tabs, not spaces - Colons after labels - Capitalize BANK, HIGH, and LOW - dbw BANK(X), X -> dba X --- engine/bcd.asm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'engine/bcd.asm') diff --git a/engine/bcd.asm b/engine/bcd.asm index 2e1e812..7b7c1b8 100755 --- a/engine/bcd.asm +++ b/engine/bcd.asm @@ -1,5 +1,5 @@ INCLUDE "constants.asm" - + SECTION "engine/bcd.asm", ROMX AddBCD: ; 03:4de3 @@ -15,10 +15,10 @@ AddBCD: ; 03:4de3 dec c jr nz, .add jr nc, .done - + ld a, $99 inc de - + .fill ld [de], a inc de @@ -44,7 +44,7 @@ SubBCD: ; 03:4df9 jr nc, .done ld a, 0 inc de - + .fill ld [de], a inc de -- cgit v1.2.3