]> git.sur5r.net Git - cc65/blob - libsrc/pet/kreadst.s
Add sample linker configurations for Atari binary output in C.
[cc65] / libsrc / pet / kreadst.s
1 ;
2 ; Ullrich von Bassewitz, 19.11.2002
3 ;
4 ; READST replacement function for the PETs
5 ;
6
7         .export         READST
8         .importzp       ST
9
10
11 .proc   READST
12
13         lda     ST
14         rts
15
16 .endproc
17
18