mirror of
https://github.com/cc65/cc65.git
synced 2024-11-01 11:04:34 +00:00
710c6c6f2f
It properly returns the RS-232 device's status.
16 lines
241 B
ArmAsm
16 lines
241 B
ArmAsm
;
|
|
; 1999-06-03, Ullrich von Bassewitz
|
|
; 2021-01-12, Greg King
|
|
;
|
|
; unsigned char cbm_k_readst (void);
|
|
;
|
|
|
|
.include "cbm.inc"
|
|
|
|
.export _cbm_k_readst
|
|
|
|
|
|
_cbm_k_readst:
|
|
ldx #>$0000
|
|
jmp READST
|