]> git.sur5r.net Git - cc65/blobdiff - libsrc/c128/c128-ptvjoy.s
remove superfluous ".code" line
[cc65] / libsrc / c128 / c128-ptvjoy.s
index af9be13de988da8c8acac99fe82a614686100d40..d566f72db6d34eeeb16d970a782337f46644314e 100644 (file)
@@ -1,6 +1,6 @@
 ;
 ; PTV-4 Player joystick driver for the C128
-;                                          
+;
 ; Ullrich von Bassewitz, 2003-09-28, using the C64 driver from
 ; Groepaz/Hitmen, 2002-12-23, which is
 ; obviously based on Ullrichs driver :)
@@ -21,8 +21,8 @@
 
 ; Driver signature
 
-        .byte   $6A, $6F, $79   ; "joy"
-        .byte   $00             ; Driver API version number
+        .byte   $6A, $6F, $79           ; "joy"
+        .byte   JOY_API_VERSION         ; Driver API version number
 
 ; Button state masks (8 values)
 
         .byte   $04                     ; JOY_LEFT
         .byte   $08                     ; JOY_RIGHT
         .byte   $10                     ; JOY_FIRE
-        .byte   $00                     ; Future expansion
+        .byte   $00                     ; JOY_FIRE2 unavailable
         .byte   $00                     ; Future expansion
         .byte   $00                     ; Future expansion
 
 ; Jump table.
 
-        .word   INSTALL
-        .word   DEINSTALL
-        .word   COUNT
-        .word   READ
+        .addr   INSTALL
+        .addr   UNINSTALL
+        .addr   COUNT
+        .addr   READ
+        .addr   0                       ; IRQ entry unused
 
 ; ------------------------------------------------------------------------
 ; Constants
@@ -60,15 +61,14 @@ JOY_COUNT       = 4             ; Number of joysticks we support
 INSTALL:
         lda     #<JOY_ERR_OK
         ldx     #>JOY_ERR_OK
-
-;      rts                     ; Run into DEINSTALL instead
+;      rts                     ; Run into UNINSTALL instead
 
 ; ------------------------------------------------------------------------
-; DEINSTALL routine. Is called before the driver is removed from memory.
+; UNINSTALL routine. Is called before the driver is removed from memory.
 ; Can do cleanup or whatever. Must not return anything.
 ;
 
-DEINSTALL:
+UNINSTALL:
         rts