mirror of
https://github.com/cc65/cc65.git
synced 2024-12-23 04:30:10 +00:00
5f145542b0
This commit complements commit 98f8064b83
.
21 lines
361 B
ArmAsm
21 lines
361 B
ArmAsm
;
|
|
; Ullrich von Bassewitz, 19.11.2002
|
|
;
|
|
; BSOUT/CHROUT replacement function for the PETs
|
|
;
|
|
|
|
.export BSOUT
|
|
.export CHROUT
|
|
|
|
.import checkst
|
|
|
|
|
|
.proc BSOUT
|
|
|
|
jsr $FFD2 ; Call Kernal function
|
|
jmp checkst ; Check status, return carry on error
|
|
|
|
.endproc
|
|
|
|
CHROUT := BSOUT
|