ksim65/src/main/kotlin/net/razorvine/ksim65/components/Cpu65C02.kt

11 lines
218 B
Kotlin

package net.razorvine.ksim65.components
class Cpu65C02(stopOnBrk: Boolean): Cpu6502(stopOnBrk) {
val waiting: Boolean = false
// TODO implement this CPU type 65C02, and re-enable the unit tests for that
}