Unenhanced //e does not have a 65c02

This commit is contained in:
Ivan Izaguirre 2019-11-06 00:32:34 +01:00 committed by Iván Izaguirre
parent a28745ab83
commit 862b087d4e
1 changed files with 2 additions and 1 deletions

View File

@ -22,7 +22,8 @@ func newApple2e() *Apple2 {
var a Apple2
a.Name = "Apple IIe"
a.mmu = newMemoryManager(&a)
a.cpu = core6502.NewCMOS65c02(a.mmu)
a.cpu = core6502.NewNMOS6502(a.mmu)
//a.cpu = core6502.NewCMOS65c02(a.mmu)
a.io = newIoC0Page(&a)
a.mmu.InitRAMalt()
addApple2SoftSwitches(a.io)