aboutsummaryrefslogtreecommitdiff
path: root/conio/chline.s
diff options
context:
space:
mode:
Diffstat (limited to 'conio/chline.s')
-rw-r--r--conio/chline.s14
1 files changed, 8 insertions, 6 deletions
diff --git a/conio/chline.s b/conio/chline.s
index 2ad7fed..85d2e28 100644
--- a/conio/chline.s
+++ b/conio/chline.s
@@ -1,3 +1,5 @@
+; modified for taipan:
+; - commented out _chlinexy as taipan never uses it.
;
; Ullrich von Bassewitz, 08.08.1998
;
@@ -5,7 +7,7 @@
; void chline (unsigned char length);
;
- .export _chlinexy, _chline
+ .export _chline
.import popa, _gotoxy, cputdirect
.importzp tmp1
@@ -15,11 +17,11 @@ CHRCODE = 14
CHRCODE = $12+64
.endif
-_chlinexy:
- pha ; Save the length
- jsr popa ; Get y
- jsr _gotoxy ; Call this one, will pop params
- pla ; Restore the length
+;_chlinexy:
+; pha ; Save the length
+; jsr popa ; Get y
+; jsr _gotoxy ; Call this one, will pop params
+; pla ; Restore the length
_chline:
cmp #0 ; Is the length zero?