Added a missing label to some conio cursor movement functions.
It had prevented other functions, e.g. cputs(), from being linked into a program.
This commit is contained in:
@@ -1,15 +1,19 @@
|
||||
;
|
||||
; Ullrich von Bassewitz, 06.08.1998
|
||||
; 1998-08-06, Ullrich von Bassewitz
|
||||
; 2017-06-15, Greg King
|
||||
;
|
||||
; void gotoxy (unsigned char x, unsigned char y);
|
||||
;
|
||||
|
||||
.export _gotoxy
|
||||
.export gotoxy, _gotoxy
|
||||
|
||||
.import setcursor
|
||||
.import popa
|
||||
|
||||
.include "creativision.inc"
|
||||
|
||||
gotoxy: jsr popa ; Get Y
|
||||
|
||||
.proc _gotoxy
|
||||
|
||||
sta CURSOR_Y ; Set Y
|
||||
|
||||
Reference in New Issue
Block a user