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

9 lines
191 B
Kotlin
Raw Normal View History

2018-08-11 01:03:19 +00:00
package android.emu6502
infix fun Byte.shr(other: Int): Byte {
return this.toInt().shr(other).toByte()
}
infix fun Byte.shl(other: Int): Byte {
return this.toInt().shr(other).toByte()
}