remove non existing kernal export

This commit is contained in:
mrdudz
2025-06-24 21:52:48 +02:00
parent faa287f578
commit f787e0857a
3 changed files with 10 additions and 13 deletions

View File

@@ -4,31 +4,30 @@ CPU_ISET_NONE = $0001
CPU_ISET_6502 = $0002 CPU_ISET_6502 = $0002
CPU_ISET_6502X = $0004 CPU_ISET_6502X = $0004
CPU_ISET_6502DTV = $0008 CPU_ISET_6502DTV = $0008
CPU_ISET_65SC02 = $0010 CPU_ISET_65SC02 = $0010
CPU_ISET_65C02 = $0020 CPU_ISET_65C02 = $0020
CPU_ISET_65816 = $0040 CPU_ISET_65816 = $0040
CPU_ISET_SWEET16 = $0080 CPU_ISET_SWEET16 = $0080
CPU_ISET_HUC6280 = $0100 CPU_ISET_HUC6280 = $0100
CPU_ISET_M740 = $0200 CPU_ISET_M740 = $0200
CPU_ISET_4510 = $0400 CPU_ISET_4510 = $0400
CPU_ISET_45GS02 = $0800 CPU_ISET_45GS02 = $0800
; CPU capabilities ; CPU capabilities
; make sure to only combine the instruction sets that are 100% compatible
CPU_NONE = CPU_ISET_NONE CPU_NONE = CPU_ISET_NONE
CPU_6502 = CPU_ISET_6502 CPU_6502 = CPU_ISET_6502
CPU_6502X = CPU_ISET_6502|CPU_ISET_6502X CPU_6502X = CPU_ISET_6502X | CPU_ISET_6502
CPU_6502DTV = CPU_ISET_6502|CPU_ISET_6502DTV CPU_6502DTV = CPU_ISET_6502DTV | CPU_ISET_6502
CPU_65SC02 = CPU_ISET_6502|CPU_ISET_65SC02 CPU_65SC02 = CPU_ISET_65SC02 | CPU_ISET_6502
CPU_65C02 = CPU_ISET_6502|CPU_ISET_65SC02|CPU_ISET_65C02 CPU_65C02 = CPU_ISET_65C02 | CPU_ISET_6502 | CPU_ISET_65SC02
CPU_65816 = CPU_ISET_6502|CPU_ISET_65SC02|CPU_ISET_65816 CPU_65816 = CPU_ISET_65816 | CPU_ISET_6502 | CPU_ISET_65SC02
CPU_SWEET16 = CPU_ISET_SWEET16 CPU_SWEET16 = CPU_ISET_SWEET16
; FIXME: CPU_ISET_65SC02 does not apply to the following, because the zp-indirect ; FIXME: CPU_ISET_65SC02 does not apply to the following, because the zp-indirect
; addressing was replaced with zp-indirect,z-indexed in 652SCE02 ; addressing was replaced with zp-indirect,z-indexed in 652SCE02
; NOTE: HUC6280 removes "wai" ($cb) and "stp" ($db) from the 65C02 instruction set ; NOTE: HUC6280 removes "wai" ($cb) and "stp" ($db) from the 65C02 instruction set
CPU_HUC6280 = CPU_ISET_6502|CPU_ISET_65C02|CPU_ISET_HUC6280 CPU_HUC6280 = CPU_ISET_HUC6280 | CPU_ISET_6502 | CPU_ISET_65C02
; NOTE: 4510 replaces "wai" ($cb) and "stp" ($db) of the 65C02 instruction set ; NOTE: 4510 replaces "wai" ($cb) and "stp" ($db) of the 65C02 instruction set
CPU_4510 = CPU_ISET_6502|CPU_ISET_65C02|CPU_ISET_4510 CPU_4510 = CPU_ISET_4510 | CPU_ISET_6502 | CPU_ISET_65C02
CPU_45GS02 = CPU_ISET_6502|CPU_ISET_65C02|CPU_ISET_4510|CPU_ISET_45GS02 CPU_45GS02 = CPU_ISET_45GS02 | CPU_ISET_6502 | CPU_ISET_65C02 | CPU_ISET_4510
CPU_M740 = CPU_ISET_6502|CPU_ISET_M740 CPU_M740 = CPU_ISET_M740 | CPU_ISET_6502

View File

@@ -42,7 +42,6 @@
.export STOP .export STOP
.export GETIN .export GETIN
.export CLALL .export CLALL
.export UDTIM
.export SCREEN .export SCREEN
.export IOBASE .export IOBASE
.export PLOT .export PLOT

View File

@@ -42,7 +42,6 @@
.export STOP .export STOP
.export GETIN .export GETIN
.export CLALL .export CLALL
.export UDTIM
.export SCREEN .export SCREEN
.export IOBASE .export IOBASE
.export PLOT .export PLOT