Remove debug print statements

This commit is contained in:
Gabriel Tofvesson 2019-04-07 13:53:37 +02:00
parent d4638fc517
commit e900daa435

View File

@ -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")