]> git.sur5r.net Git - cc65/blob - libsrc/osic1p/kbhit.s
42db7a5e60e82263f3e81098065ae4fa48281d56
[cc65] / libsrc / osic1p / kbhit.s
1 ;
2 ; int kbhit (void);
3 ;
4 ; Currently a dummy function that returns always true
5
6         .export         _kbhit
7
8 _kbhit:
9         lda     #$01            ; load low byte with true value
10         ldx     #$00            ; load high byte
11         rts