1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 07:29:33 +00:00
cc65/libsrc/atari7800/cputc.s

138 lines
3.0 KiB
ArmAsm
Raw Permalink Normal View History

2022-04-04 12:18:40 +00:00
;
; Mark Keates, Christian Groessler, Piotr Fusik, Karri Kaksonen
;
; void cputcxy (unsigned char x, unsigned char y, char c);
; void cputc (char c);
;
.export _cputc
2022-04-18 10:49:29 +00:00
.import gotox, gotoy, pusha0
2022-04-16 16:15:19 +00:00
.import pushax
.import _screen
2022-04-16 18:13:51 +00:00
.import txtcolor
2022-04-04 12:18:40 +00:00
.include "atari7800.inc"
.include "extzp.inc"
2022-04-04 12:18:40 +00:00
2022-04-16 16:15:19 +00:00
.code
2022-04-04 12:18:40 +00:00
2022-04-06 10:27:47 +00:00
;---------------------------------------------------------------------------
; 8x16 routine
umula0:
ldy #8 ; Number of bits
2022-04-16 16:15:19 +00:00
lda #0
2022-04-06 10:27:47 +00:00
lsr ptr7800 ; Get first bit into carry
@L0: bcc @L1
clc
adc ptrtmp
tax
lda ptrtmp+1 ; hi byte of left op
2022-04-16 16:15:19 +00:00
clc
2022-04-06 10:27:47 +00:00
adc ptr7800+1
sta ptr7800+1
txa
@L1: ror ptr7800+1
ror a
ror ptr7800
dey
bne @L0
tax
lda ptr7800 ; Load the result
rts
2022-04-04 12:18:40 +00:00
;-----------------------------------------------------------------------------
; Put a character on screen
;
; The code will handle newlines that wrap to start of screen
;
.proc _cputc
2022-04-16 16:15:19 +00:00
cmp #$0A ; LF
2022-04-06 10:27:47 +00:00
bne @L4
2022-04-16 16:15:19 +00:00
@L1: lda CURS_Y ; newline
cmp #(screenrows-1)
2022-04-06 10:27:47 +00:00
bne @L2
2022-04-16 16:15:19 +00:00
lda #0
beq @L3
@L2: clc
adc #1
@L3: jsr gotoy
lda #0
jmp gotox
2022-04-04 12:18:40 +00:00
2022-04-06 10:27:47 +00:00
@L4:
2022-04-16 16:15:19 +00:00
cmp #$20 ; ' '
bne @L5
lda #$00
jmp @L10
2022-04-04 12:18:40 +00:00
@L5:
2022-04-16 16:15:19 +00:00
cmp #$3F ; '?'
bne @L6
lda #$02
jmp @L9
2022-04-04 12:18:40 +00:00
@L6:
2022-04-16 16:15:19 +00:00
cmp #$7C ; '|'
bne @L7
lda #$06
jmp @L9
2022-04-04 12:18:40 +00:00
@L7:
2022-04-16 16:15:19 +00:00
cmp #$41 ; >= 'A'
bcc @L8
and #$5F ; make upper case
sec
sbc #($41 - 17)
jmp @L9
2022-04-04 12:18:40 +00:00
@L8:
2022-04-16 16:15:19 +00:00
sec ; >= '*'
sbc #($2A - 1)
2022-04-06 10:27:47 +00:00
@L9:
2022-04-16 16:15:19 +00:00
clc
adc txtcolor
2022-04-06 10:27:47 +00:00
@L10:
2022-04-16 16:15:19 +00:00
asl
pha
lda #0
sta ptr7800+1
sta ptrtmp+1
lda CURS_Y ; Find position on screen buffer
sta ptr7800
lda #charsperline
sta ptrtmp
jsr umula0
clc
adc CURS_X
bcc @L11
inx
@L11: clc
adc #<(_screen)
sta ptr7800
bcc @L12
inx
@L12: txa
clc
adc #>(_screen)
sta ptr7800+1
pla ; Print character on screen
ldy #0
sta (ptr7800),y
lda CURS_X ; Increment cursor
cmp #(charsperline-1)
beq @L1
clc
adc #1
jmp gotox
2022-04-04 12:18:40 +00:00
.endproc
2022-04-14 18:52:57 +00:00
;-------------------------------------------------------------------------------
; force the init constructor to be imported
.import initconio
conio_init = initconio