]> git.sur5r.net Git - cc65/blob - libsrc/geos/conio/kbhit.s
5786d0aeec5dd2acc215c864465e3dfbee66f4c2
[cc65] / libsrc / geos / conio / kbhit.s
1
2 ;
3 ; Maciej 'YTM/Elysium' Witkowiak
4 ;
5 ; 27.10.2001
6
7 ; unsigned char kbhit (void);
8
9             .export _kbhit
10             .import return0, return1
11
12             .include "../inc/geossym.inc"
13
14 _kbhit:
15             lda pressFlag
16             bmi L1
17             jmp return0
18 L1:         jmp return1