]> git.sur5r.net Git - cc65/blobdiff - libsrc/pet/kernal.s
Fixed gcc compiler warning (#867)
[cc65] / libsrc / pet / kernal.s
index 522f2ba3f823ae5515775575e49d31ae42be8871..ba66c4653c4d816e6abc7868458442a507e55623 100644 (file)
@@ -4,35 +4,11 @@
 ; PET kernal functions
 ;
 
-        .export         OPEN
-        .export         CLOSE
-        .export         CHKIN
-        .export         CKOUT
+        .include "cbm_kernal.inc"
+
         .export         CLRCH
         .export         BASIN
-        .export         BSOUT
         .export         STOP
         .export         GETIN
         .export         CLALL
         .export         UDTIM
-
-
-
-
-
-
-;-----------------------------------------------------------------------------
-; Functions that are available in the kernal jump table
-
-OPEN           = $FFC0
-CLOSE          = $FFC3
-CHKIN          = $FFC6
-CKOUT          = $FFC9
-CLRCH          = $FFCC
-BASIN          = $FFCF
-BSOUT          = $FFD2
-STOP           = $FFE1
-GETIN          = $FFE4
-CLALL          = $FFE7
-UDTIM          = $FFEA
-