diff options
author | B. Watson <yalhcru@gmail.com> | 2016-02-22 23:53:49 -0500 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2016-02-22 23:53:49 -0500 |
commit | 271b13a93f6950aa93ac13669f2f7a3ba403c316 (patch) | |
tree | ea7830dc029747913fb37825cf416cc0331be5fd | |
parent | de5a281e1befc79dbd0453f2ce4991521fbb5aa1 (diff) | |
download | taipan-271b13a93f6950aa93ac13669f2f7a3ba403c316.tar.gz |
undo 1-byte optimization that breaks fenders, 7387 free now
-rw-r--r-- | console.s | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |