From 65e6bb6bae08be492d76b00b661108afc4ad93be Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Tue, 13 Apr 2021 16:18:36 -0400 Subject: Save 43 bytes (8326 free) --- console.s | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'console.s') diff --git a/console.s b/console.s index 009fc7f..00e0f10 100644 --- a/console.s +++ b/console.s @@ -2,7 +2,7 @@ .include "atari.inc" .include "conio/mul40.s" - .export _clrtobot, _clrtoeol, _clr_screen, _clrtoline, _cspaces, _cblank, _cblankto, _backspace, _cprint_pipe, _cprint_bang, _cspace, _cputc_s, _comma_space, _cprint_colon_space, _cprint_question_space, _cprint_period, _cprint_taipan_prompt, _plus_or_space, _gotox0y, _cputc0, _set_orders + .export _clrtobot, _clrtoeol, _clr_screen, _clrtoline, _cspaces, _cblank, _cblankto, _backspace, _cprint_pipe, _cprint_bang, _cspace, _cputc_s, _comma_space, _cprint_colon_space, _cprint_question_space, _cprint_period, _cprint_taipan_prompt, _plus_or_space, _gotox0y22, _gotox0y3, _gotox0y, _cputc0, _set_orders .export _rvs_on, _rvs_off .importzp tmp3 ; ditto @@ -233,8 +233,17 @@ _plus_or_space: stx ROWCRS jmp _cputc +; extern void gotox0y22(void); +_gotox0y22: + lda #22 + .byte $2c + +; extern void gotox0y3(void); +_gotox0y3: + lda #3 + ; extern void gotox0y(char y); - _gotox0y: +_gotox0y: sta ROWCRS lda #0 sta COLCRS -- cgit v1.2.3