From 6059f94d85ef050c9db2ebf1347aeff9d94cf076 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Sat, 17 Jan 2015 20:49:36 +0000 Subject: [PATCH] lowlevel-6502: fix outstring etc --- Kernel/lowlevel-6502.s | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Kernel/lowlevel-6502.s b/Kernel/lowlevel-6502.s index 66031ed3..7ad12971 100644 --- a/Kernel/lowlevel-6502.s +++ b/Kernel/lowlevel-6502.s @@ -144,7 +144,7 @@ outstringl: lda (ptr1),y cmp #0 beq outdone1 - jsr outcharhex + jsr outchar iny jmp outstringl @@ -177,7 +177,7 @@ outcharhex: lsr a lsr a lsr a - cmp #9 + cmp #10 bcc deci1 clc adc #7 @@ -187,7 +187,7 @@ deci1: jsr outchar pla and #$0f - cmp #9 + cmp #10 bcc deci2 clc adc #7 -- 2.34.1