From e900daa435846c879f4014d711c69abee2a78ffc Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Sun, 7 Apr 2019 13:53:37 +0200 Subject: [PATCH] Remove debug print statements --- microcompiler.kt | 2 -- 1 file changed, 2 deletions(-) diff --git a/microcompiler.kt b/microcompiler.kt index 484bf89..2f23143 100644 --- a/microcompiler.kt +++ b/microcompiler.kt @@ -262,8 +262,6 @@ fun parseALU(instr: String): MicroInstruction { val args = instr.split(" ") if(args.size != 2) throw RuntimeException("Unexpected arguments: $instr") - println(instr) - val source = Register.lookup(args[1]) if(!source.canRead) throw RuntimeException("Cannot read from source: $instr")