aboutsummaryrefslogtreecommitdiff
path: root/conio/cputs.s
diff options
context:
space:
mode:
Diffstat (limited to 'conio/cputs.s')
-rw-r--r--conio/cputs.s16
1 files changed, 9 insertions, 7 deletions
diff --git a/conio/cputs.s b/conio/cputs.s
index 13cf847..80b770e 100644
--- a/conio/cputs.s
+++ b/conio/cputs.s
@@ -1,3 +1,5 @@
+; modified for use with taipan:
+; - _cputsxy commented out as taipan never uses it.
;
; Ullrich von Bassewitz, 06.08.1998
;
@@ -5,16 +7,16 @@
; void cputs (char* s);
;
- .export _cputsxy, _cputs
+ .export _cputs
.import popa, _gotoxy, _cputc
.importzp ptr1, tmp1
-_cputsxy:
- sta ptr1 ; Save s for later
- stx ptr1+1
- jsr popa ; Get Y
- jsr _gotoxy ; Set cursor, pop x
- jmp L0 ; Same as cputs...
+;_cputsxy:
+; sta ptr1 ; Save s for later
+; stx ptr1+1
+; jsr popa ; Get Y
+; jsr _gotoxy ; Set cursor, pop x
+; jmp L0 ; Same as cputs...
_cputs: sta ptr1 ; Save s
stx ptr1+1