1
0
mirror of https://github.com/irmen/ksim65.git synced 2024-06-01 21:41:31 +00:00
ksim65/src/main/kotlin/net/razorvine/ksim65/components/Cpu65C02.kt

11 lines
218 B
Kotlin
Raw Normal View History

2019-09-11 00:17:59 +00:00
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
}