mirror of
https://github.com/cc65/cc65.git
synced 2025-08-08 06:25:17 +00:00
Renamed DEINSTALL ->UNINSTALL
git-svn-id: svn://svn.cc65.org/cc65/trunk@1951 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -1,5 +1,6 @@
|
|||||||
;
|
;
|
||||||
; Standard joystick driver for the C64
|
; Standard joystick driver for the C64. May be used multiple times when linked
|
||||||
|
; to the statically application.
|
||||||
;
|
;
|
||||||
; Ullrich von Bassewitz, 2002-12-20
|
; Ullrich von Bassewitz, 2002-12-20
|
||||||
;
|
;
|
||||||
@@ -37,7 +38,7 @@
|
|||||||
; Jump table.
|
; Jump table.
|
||||||
|
|
||||||
.word INSTALL
|
.word INSTALL
|
||||||
.word DEINSTALL
|
.word UNINSTALL
|
||||||
.word COUNT
|
.word COUNT
|
||||||
.word READ
|
.word READ
|
||||||
|
|
||||||
@@ -67,11 +68,11 @@ INSTALL:
|
|||||||
; rts ; Run into DEINSTALL instead
|
; rts ; Run into DEINSTALL 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.
|
; Can do cleanup or whatever. Must not return anything.
|
||||||
;
|
;
|
||||||
|
|
||||||
DEINSTALL:
|
UNINSTALL:
|
||||||
rts
|
rts
|
||||||
|
|
||||||
|
|
||||||
@@ -88,7 +89,7 @@ COUNT:
|
|||||||
; READ: Read a particular joystick passed in A.
|
; READ: Read a particular joystick passed in A.
|
||||||
;
|
;
|
||||||
|
|
||||||
READ: tax ; Joystick number into X
|
READ: tax ; Joystick number into X
|
||||||
bne joy2
|
bne joy2
|
||||||
|
|
||||||
; Read joystick 1
|
; Read joystick 1
|
||||||
|
Reference in New Issue
Block a user