6502Android/app/src/main/kotlin/android/emu6502/Labels.kt
2015-06-09 10:21:49 -07:00

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.
}
}