Remove inconsistent new lines

Hmm...
This commit is contained in:
Linus Långberg 2019-04-15 12:09:38 +02:00 committed by GitHub
parent 55c5f4a31d
commit 0364fd1c54
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,7 +12,6 @@ class MachineState {
var cycleCount: Long = 0
var halted: Boolean = false
fun step(){
if(halted) return
++cycleCount
@ -272,7 +271,6 @@ class MachineState {
return state
}
}
}
fun Short.inv() = toInt().inv().onlyBits(16).toShort()