mirror of
https://github.com/cc65/cc65.git
synced 2024-12-23 19:29:37 +00:00
Added .import for std kernal entries
This commit is contained in:
parent
e98bb13271
commit
032a3877e0
@ -7,46 +7,51 @@
|
|||||||
; Subroutines available in the CBM jump table
|
; Subroutines available in the CBM jump table
|
||||||
;
|
;
|
||||||
|
|
||||||
;CINT = $FF81
|
.import C64MODE
|
||||||
;IOINIT = $FF84
|
.import SWAPPER
|
||||||
;RAMTAS = $FF87
|
.import SETBNK
|
||||||
;RESTOR = $FF8A
|
|
||||||
;VECTOR = $FF8D
|
|
||||||
;SETMSG = $FF90
|
|
||||||
;SECOND = $FF93
|
|
||||||
;TKSA = $FF96
|
|
||||||
;MEMTOP = $FF99
|
|
||||||
;MEMBOT = $FF9C
|
|
||||||
;SCNKEY = $FF9F
|
|
||||||
;SETTMO = $FFA2
|
|
||||||
;ACPTR = $FFA5
|
|
||||||
;CIOUT = $FFA8
|
|
||||||
;UNTLK = $FFAB
|
|
||||||
;UNLSN = $FFAE
|
|
||||||
;LISTEN = $FFB1
|
|
||||||
;TALK = $FFB4
|
|
||||||
;READST = $FFB7
|
|
||||||
;SETLFS = $FFBA
|
|
||||||
;SETNAM = $FFBD
|
|
||||||
;OPEN = $FFC0
|
|
||||||
;CLOSE = $FFC3
|
|
||||||
;CHKIN = $FFC6
|
|
||||||
;CKOUT = $FFC9
|
|
||||||
;CLRCH = $FFCC
|
|
||||||
;BASIN = $FFCF
|
|
||||||
;BSOUT = $FFD2
|
|
||||||
;LOAD = $FFD5
|
|
||||||
;SAVE = $FFD8
|
|
||||||
;SETTIM = $FFDB
|
|
||||||
;RDTIM = $FFDE
|
|
||||||
;STOP = $FFE1
|
|
||||||
;GETIN = $FFE4
|
|
||||||
;CLALL = $FFE7
|
|
||||||
;UDTIM = $FFEA
|
|
||||||
;SCREEN = $FFED
|
|
||||||
;PLOT = $FFF0
|
|
||||||
;IOBASE = $FFF3
|
|
||||||
|
|
||||||
|
.import CINT
|
||||||
|
.import IOINIT
|
||||||
|
.import RAMTAS
|
||||||
|
.import VECTOR
|
||||||
|
.import RESTOR
|
||||||
|
.import SETMSG
|
||||||
|
.import SECOND
|
||||||
|
.import TKSA
|
||||||
|
.import MEMTOP
|
||||||
|
.import MEMBOT
|
||||||
|
.import SCNKEY
|
||||||
|
.import SETTMO
|
||||||
|
.import ACPTR
|
||||||
|
.import CIOUT
|
||||||
|
.import UNTLK
|
||||||
|
.import UNLSN
|
||||||
|
.import LISTEN
|
||||||
|
.import TALK
|
||||||
|
.import READST
|
||||||
|
.import SETLFS
|
||||||
|
.import SETNAM
|
||||||
|
.import OPEN
|
||||||
|
.import CLOSE
|
||||||
|
.import LOAD
|
||||||
|
.import SAVE
|
||||||
|
.import SETTIM
|
||||||
|
.import RDTIM
|
||||||
|
.import SCREEN
|
||||||
|
.import PLOT
|
||||||
|
.import IOBASE
|
||||||
|
.import CHKIN
|
||||||
|
.import CKOUT
|
||||||
|
.import CLRCH
|
||||||
|
.import BASIN
|
||||||
|
.import CHRIN
|
||||||
|
.import BSOUT
|
||||||
|
.import CHROUT
|
||||||
|
.import STOP
|
||||||
|
.import GETIN
|
||||||
|
.import CLALL
|
||||||
|
.import UDTIM
|
||||||
|
|
||||||
;-----------------------------------------------------------------------------
|
;-----------------------------------------------------------------------------
|
||||||
; Device numbers
|
; Device numbers
|
||||||
@ -63,5 +68,3 @@ CBMDEV_SCREEN = 3
|
|||||||
|
|
||||||
MAX_DRIVES = 23
|
MAX_DRIVES = 23
|
||||||
FIRST_DRIVE = 8
|
FIRST_DRIVE = 8
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user