]> git.sur5r.net Git - cc65/blobdiff - libsrc/apple2/wherex.s
Quick fix for missing _div() adaptation after 95223be.
[cc65] / libsrc / apple2 / wherex.s
index 6cf1405313971722099ead476b01c3a85468b028..bd717a22b27c4f6d3180d1bd3d9097d494183bfb 100644 (file)
@@ -1,13 +1,14 @@
+;
+; Kevin Ruland
+;
+; unsigned char wherex (void);
+;
 
-       ;; Keivn Ruland
-       ;;
-       ;; unsigned char wherex( void );
+        .export         _wherex
 
-       .export         _wherex
-
-       .include        "apple2.inc"
+        .include        "apple2.inc"
 
 _wherex:
-       lda     CH
+        lda     CH
         ldx     #$00
-       rts
+        rts