6502Android/app/src/main/kotlin/android/emu6502/Memory.kt

14 lines
219 B
Kotlin
Raw Normal View History

2015-06-09 17:21:49 +00:00
package android.emu6502
class Memory {
private val mem = ByteArray(65536)
public fun get(addr: Int): Byte {
return mem[addr]
}
public fun set(addr: Int, value: Int) {
mem[addr] = value.toByte()
}
}