1
0
mirror of https://github.com/KarolS/millfork.git synced 2025-01-26 20:33:02 +00:00

Fix compilation problems when targeting a specific 65C02 subarch (fixes #20)

This commit is contained in:
Karol Stasiak 2019-11-13 22:36:19 +01:00
parent 7b040c280b
commit 7f6a2beb6d

View File

@ -391,7 +391,7 @@ object Cpu extends Enumeration {
/** /**
* Processors that can run code for WDC 65C02 * Processors that can run code for WDC 65C02
*/ */
val CmosCompatible: Set[Cpu.Value] = Set(Cmos, HuC6280, CE02, Sixteen) val CmosCompatible: Set[Cpu.Value] = Set(Cmos, HuC6280, CE02, Sixteen, SC02, Rockwell, Wdc)
/** /**
* Processors that can run code for Zilog Z80 * Processors that can run code for Zilog Z80
*/ */