diff options
author | B. Watson <yalhcru@gmail.com> | 2021-04-11 12:38:47 -0400 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2021-04-11 12:38:47 -0400 |
commit | 9e8f7dd4c68014878f7c63547f1efbf8533ca7d4 (patch) | |
tree | ff435d07c7f0f249575de661eb53336af18384e4 /conio | |
parent | dcba1c501bbf885fb6f26ed8f9680716955794a5 (diff) | |
download | taipan-9e8f7dd4c68014878f7c63547f1efbf8533ca7d4.tar.gz |
Save 3 bytes
Diffstat (limited to 'conio')
-rw-r--r-- | conio/cputc.s | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/conio/cputc.s b/conio/cputc.s index 60fa7cc..748eb00 100644 --- a/conio/cputc.s +++ b/conio/cputc.s @@ -13,7 +13,7 @@ ; ;.export _cputcxy, _cputc - .export _cputc + .export _cputc, _crlf .export plot, cputdirect, putchar .import popa, _gotoxy .importzp tmp4,ptr4 @@ -64,6 +64,7 @@ cputdirect: ; accepts screen code sta COLCRS .export newline +_crlf: newline: lda #0 sta COLCRS |