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

13 lines
409 B
Kotlin

package android.emu6502
class Labels {
fun getPC(label: String): Int {
throw UnsupportedOperationException(
"not implemented") //To change body of created functions use File | Settings | File Templates.
}
fun find(label: String): Boolean {
throw UnsupportedOperationException(
"not implemented") //To change body of created functions use File | Settings | File Templates.
}
}