From 423460cc476e33fa9e8c576846623467c2d4811c Mon Sep 17 00:00:00 2001 From: Clanmaster21 Date: Mon, 21 Oct 2019 15:35:57 +0100 Subject: [PATCH] Removed loop analysis comments, and trailing whitespace --- kernel/parse.asm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/kernel/parse.asm b/kernel/parse.asm index ca2eca9..bfad194 100644 --- a/kernel/parse.asm +++ b/kernel/parse.asm @@ -41,12 +41,12 @@ parseHex: ; On success, the carry flag is reset. On error, it is set. -parseHexPair: ; 31 bytes, 78 cycles +parseHexPair: ld a, (hl) call parseHex ret c ; faster and smaller than a conditional jump ; by delaying this push, we can use a conditional return above - push bc + push bc ld b, a inc hl ld a, (hl) @@ -57,14 +57,14 @@ parseHexPair: ; 31 bytes, 78 cycles ld c, a ld a, b ; by delaying shifting until the end, we save bytes in the single case. - rla \ rla \ rla \ rla + rla \ rla \ rla \ rla or c .end: pop bc ret - .single: ;53 cycles if single + .single: ld a, b dec hl pop bc