From 271b13a93f6950aa93ac13669f2f7a3ba403c316 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Mon, 22 Feb 2016 23:53:49 -0500 Subject: undo 1-byte optimization that breaks fenders, 7387 free now --- console.s | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'console.s') diff --git a/console.s b/console.s index 18b22bf..cd113ff 100644 --- a/console.s +++ b/console.s @@ -35,8 +35,8 @@ _clr_screen: ; same as gotoxy(0,0); clrtobot(); _clrtobot: ; same as clrtoline(24); lda #24 - ;bne _clrtoline ; we'd have to do this if ROWCRS were non-zero-page - .byte $2c ; see "bit trick" explanation below + bne _clrtoline + ;.byte $2c ; for some reason, this breaks fenders. TODO: investigate _clrtoeol: lda ROWCRS -- cgit v1.2.3