From 0364fd1c543332c4572300e8230e5c3263da3a90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Linus=20L=C3=A5ngberg?= Date: Mon, 15 Apr 2019 12:09:38 +0200 Subject: [PATCH] Remove inconsistent new lines Hmm... --- MicroEmu.kt | 2 -- 1 file changed, 2 deletions(-) diff --git a/MicroEmu.kt b/MicroEmu.kt index fd3a5b5..8b46c7a 100644 --- a/MicroEmu.kt +++ b/MicroEmu.kt @@ -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()