]> git.sur5r.net Git - cc65/blobdiff - libsrc/apple2/kbhit.s
fix comments
[cc65] / libsrc / apple2 / kbhit.s
index ac8d853502aba75f7223c30ae069ab812b56d1f5..c4efb38d6491dbab3b248500118ef9044dd9347c 100644 (file)
@@ -5,11 +5,12 @@
 ; unsigned char kbhit (void);
 ;
 
-        .export        _kbhit
+        .export _kbhit
 
         .include "apple2.inc"
 
-_kbhit: lda     KBD             ; Reading KBD checks for keypress
+_kbhit:
+        lda     KBD             ; Reading KBD checks for keypress
         rol                     ; if high bit is set, key was pressed
         lda     #$00
         tax