]> git.sur5r.net Git - cc65/blob - libsrc/pet/krdtim.s
Fixed gcc compiler warning (#867)
[cc65] / libsrc / pet / krdtim.s
1 ;
2 ; Ullrich von Bassewitz, 19.11.2002
3 ;
4 ; RDTIM replacement function for the PETs
5 ;
6
7         .export         RDTIM
8
9         .include        "pet.inc"
10
11
12 .proc   RDTIM
13
14         sei
15         lda     TIME+2
16         ldx     TIME+1
17         ldy     TIME
18         cli
19         rts
20
21 .endproc
22