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

13 lines
409 B
Kotlin
Raw Normal View History

2015-06-09 17:21:49 +00:00
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.
}
}