]> git.sur5r.net Git - cc65/blob - libsrc/plus4/kreadst.s
no TGI_ERR_NO_MEM or TGI_ERR_NO_IOCB anymore: replaced by TGI_ERR_NO_RES
[cc65] / libsrc / plus4 / kreadst.s
1 ;
2 ; Ullrich von Bassewitz, 22.11.2002
3 ;
4 ; READST replacement function
5 ;
6
7         .export         READST
8
9         .include        "plus4.inc"
10
11 ; Read the status byte from the zero page instead of banking in the ROM
12
13 .proc   READST
14         lda     ST                      ; Load status
15         rts                             ; Return to caller
16 .endproc
17
18