mirror of
https://github.com/curioustorvald/tsvm.git
synced 2026-03-07 11:51:49 +09:00
23 lines
501 B
Kotlin
23 lines
501 B
Kotlin
package net.torvald.tsvm.peripheral
|
|
|
|
class IOSpace : PeriBase {
|
|
override fun peek(addr: Long): Byte? {
|
|
TODO("Not yet implemented")
|
|
}
|
|
|
|
override fun poke(addr: Long, byte: Byte) {
|
|
TODO("Not yet implemented")
|
|
}
|
|
|
|
override fun mmio_read(addr: Long): Byte? {
|
|
TODO("Not yet implemented")
|
|
}
|
|
|
|
override fun mmio_write(addr: Long, byte: Byte) {
|
|
TODO("Not yet implemented")
|
|
}
|
|
|
|
override fun dispose() {
|
|
TODO("Not yet implemented")
|
|
}
|
|
} |