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

5 lines
106 B
Kotlin
Raw Normal View History

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