1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 07:29:33 +00:00

Moved C128 specific definitions to cbm_kernal.inc

This commit is contained in:
Olli Savia 2018-07-01 09:58:39 +03:00
parent 820c0efcb3
commit 3e94f7f55c
2 changed files with 7 additions and 9 deletions

View File

@ -4,6 +4,13 @@
; Commodore kernal functions
;
.if .def(__C128__)
; C128 Extended jump table
C64MODE := $FF4D
SWAPPER := $FF5F
SETBNK := $FF68
.endif
.if .def(__C64__) || .def(__C128__) || .def(__C16__)
CINT := $FF81
IOINIT := $FF84

View File

@ -49,12 +49,3 @@
.export SCREEN
.export PLOT
.export IOBASE
;-----------------------------------------------------------------------------
; All functions are available in the kernal jump table
; Extended jump table
C64MODE = $FF4D
SWAPPER = $FF5F
SETBNK = $FF68