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

5 lines
105 B
Kotlin
Raw Normal View History

2015-06-14 02:28:37 +00:00
package android.emu6502
fun Int.toHexString(): String {
2017-03-08 05:30:12 +00:00
return java.lang.String.format("%02X", this)
2015-06-14 02:28:37 +00:00
}