2000-05-28 13:40:48 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 06.08.1998
|
|
|
|
;
|
|
|
|
; void cputcxy (unsigned char x, unsigned char y, char c);
|
|
|
|
; void cputc (char c);
|
|
|
|
;
|
|
|
|
|
|
|
|
.export _cputcxy, _cputc, cputdirect, putchar
|
2000-07-16 20:54:53 +00:00
|
|
|
.export newline, plot
|
2000-05-28 13:40:48 +00:00
|
|
|
.exportzp CURS_X, CURS_Y
|
2002-11-19 23:02:47 +00:00
|
|
|
|
|
|
|
.import PLOT
|
2000-05-28 13:40:48 +00:00
|
|
|
.import _gotoxy
|
|
|
|
.import popa
|
|
|
|
|
|
|
|
.include "cbm610.inc"
|
2002-11-19 23:02:47 +00:00
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
_cputcxy:
|
|
|
|
pha ; Save C
|
|
|
|
jsr popa ; Get Y
|
|
|
|
jsr _gotoxy ; Set cursor, drop x
|
|
|
|
pla ; Restore C
|
|
|
|
|
|
|
|
; Plot a character - also used as internal function
|
|
|
|
|
2000-06-08 18:02:13 +00:00
|
|
|
_cputc: cmp #$0A ; CR?
|
2000-05-28 13:40:48 +00:00
|
|
|
bne L1
|
|
|
|
lda #0
|
|
|
|
sta CURS_X
|
|
|
|
beq plot ; Recalculate pointers
|
|
|
|
|
2000-06-08 18:02:13 +00:00
|
|
|
L1: cmp #$0D ; LF?
|
2000-12-02 14:59:14 +00:00
|
|
|
beq newline ; Recalculate pointers
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
; Printable char of some sort
|
|
|
|
|
2000-12-02 14:59:14 +00:00
|
|
|
cmp #' '
|
2000-05-28 13:40:48 +00:00
|
|
|
bcc cputdirect ; Other control char
|
|
|
|
tay
|
|
|
|
bmi L10
|
|
|
|
cmp #$60
|
2000-12-02 14:59:14 +00:00
|
|
|
bcc L2
|
2000-05-28 13:40:48 +00:00
|
|
|
and #$DF
|
|
|
|
bne cputdirect ; Branch always
|
2000-12-02 14:59:14 +00:00
|
|
|
L2: and #$3F
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
cputdirect:
|
2000-12-02 14:59:14 +00:00
|
|
|
jsr putchar ; Write the character to the screen
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
; Advance cursor position
|
|
|
|
|
|
|
|
advance:
|
2000-12-02 14:59:14 +00:00
|
|
|
iny
|
2003-04-09 19:34:57 +00:00
|
|
|
cpy #XSIZE
|
2000-12-02 14:59:14 +00:00
|
|
|
bne L3
|
|
|
|
jsr newline ; new line
|
|
|
|
ldy #0 ; + cr
|
|
|
|
L3: sty CURS_X
|
|
|
|
rts
|
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
newline:
|
|
|
|
clc
|
2003-04-09 19:34:57 +00:00
|
|
|
lda #XSIZE
|
2000-05-28 13:40:48 +00:00
|
|
|
adc CharPtr
|
|
|
|
sta CharPtr
|
|
|
|
bcc L4
|
|
|
|
inc CharPtr+1
|
|
|
|
L4: inc CURS_Y
|
|
|
|
rts
|
|
|
|
|
|
|
|
; Handle character if high bit set
|
|
|
|
|
2002-05-26 09:08:52 +00:00
|
|
|
L10: and #$7F
|
2000-05-28 13:40:48 +00:00
|
|
|
cmp #$7E ; PI?
|
|
|
|
bne L11
|
|
|
|
lda #$5E ; Load screen code for PI
|
|
|
|
bne cputdirect
|
|
|
|
L11: ora #$40
|
|
|
|
bne cputdirect ; Branch always
|
|
|
|
|
|
|
|
; Set cursor position, calculate RAM pointers
|
|
|
|
|
|
|
|
plot: ldy CURS_X
|
|
|
|
ldx CURS_Y
|
|
|
|
clc
|
|
|
|
jmp PLOT
|
|
|
|
|
|
|
|
; Write one character to the screen without doing anything else, return X
|
|
|
|
; position in Y
|
|
|
|
|
|
|
|
putchar:
|
|
|
|
ldx IndReg
|
|
|
|
ldy #$0F
|
|
|
|
sty IndReg
|
2002-12-19 20:29:27 +00:00
|
|
|
ora RVS ; Set revers bit
|
2000-05-28 13:40:48 +00:00
|
|
|
ldy CURS_X
|
|
|
|
sta (CharPtr),y ; Set char
|
|
|
|
stx IndReg
|
|
|
|
rts
|
|
|
|
|
2000-06-08 18:02:13 +00:00
|
|
|
|