1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-25 02:29:52 +00:00

Add the irq entry point

git-svn-id: svn://svn.cc65.org/cc65/trunk@3279 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2004-11-06 13:12:57 +00:00
parent 59d2e4e1f4
commit 16c81eb942
4 changed files with 24 additions and 20 deletions

View File

@ -32,16 +32,17 @@
.byte $04 ; JOY_LEFT .byte $04 ; JOY_LEFT
.byte $08 ; JOY_RIGHT .byte $08 ; JOY_RIGHT
.byte $10 ; JOY_FIRE .byte $10 ; JOY_FIRE
.byte $00 ; Future expansion .byte $00 ; JOY_FIRE2 not available
.byte $00 ; Future expansion .byte $00 ; Future expansion
.byte $00 ; Future expansion .byte $00 ; Future expansion
; Jump table. ; Jump table.
.word INSTALL .addr INSTALL
.word UNINSTALL .addr UNINSTALL
.word COUNT .addr COUNT
.word READJOY .addr READJOY
.addr 0 ; IRQ entry not used
; ------------------------------------------------------------------------ ; ------------------------------------------------------------------------
; Constants ; Constants

View File

@ -31,16 +31,17 @@
.byte $04 ; JOY_LEFT .byte $04 ; JOY_LEFT
.byte $08 ; JOY_RIGHT .byte $08 ; JOY_RIGHT
.byte $10 ; JOY_FIRE .byte $10 ; JOY_FIRE
.byte $00 ; Future expansion .byte $00 ; JOY_FIRE2 unavailable
.byte $00 ; Future expansion .byte $00 ; Future expansion
.byte $00 ; Future expansion .byte $00 ; Future expansion
; Jump table. ; Jump table.
.word INSTALL .addr INSTALL
.word UNINSTALL .addr UNINSTALL
.word COUNT .addr COUNT
.word READ .addr READ
.addr 0 ; IRQ entry unused
; ------------------------------------------------------------------------ ; ------------------------------------------------------------------------
; Constants ; Constants

View File

@ -32,16 +32,17 @@
.byte $04 ; JOY_LEFT .byte $04 ; JOY_LEFT
.byte $08 ; JOY_RIGHT .byte $08 ; JOY_RIGHT
.byte $10 ; JOY_FIRE .byte $10 ; JOY_FIRE
.byte $00 ; Future expansion .byte $00 ; JOY_FIRE2 unavailable
.byte $00 ; Future expansion .byte $00 ; Future expansion
.byte $00 ; Future expansion .byte $00 ; Future expansion
; Jump table. ; Jump table.
.word INSTALL .addr INSTALL
.word UNINSTALL .addr UNINSTALL
.word COUNT .addr COUNT
.word READ .addr READ
.addr 0 ; IRQ entry not used
; ------------------------------------------------------------------------ ; ------------------------------------------------------------------------
; Constants ; Constants

View File

@ -31,16 +31,17 @@
.byte $04 ; JOY_LEFT .byte $04 ; JOY_LEFT
.byte $08 ; JOY_RIGHT .byte $08 ; JOY_RIGHT
.byte $10 ; JOY_FIRE .byte $10 ; JOY_FIRE
.byte $00 ; Future expansion .byte $00 ; JOY_FIRE2 unavailable
.byte $00 ; Future expansion .byte $00 ; Future expansion
.byte $00 ; Future expansion .byte $00 ; Future expansion
; Jump table. ; Jump table.
.word INSTALL .addr INSTALL
.word UNINSTALL .addr UNINSTALL
.word COUNT .addr COUNT
.word READ .addr READ
.addr 0 ; IRQ entry unused
; ------------------------------------------------------------------------ ; ------------------------------------------------------------------------
; Constants ; Constants