Allow constant values for general ALU operations
This commit is contained in:
parent
343d028398
commit
5fcb5f2a7f
@ -267,6 +267,13 @@ fun parseALU(instr: String): MicroInstruction {
|
||||
val args = instr.split(" ")
|
||||
if(args.size != 2) throw RuntimeException("Unexpected arguments: $instr")
|
||||
|
||||
try{
|
||||
val num = readNumber(args[1], 65535)
|
||||
return MicroInstruction(ALU.matchName(args[0])!!, num)
|
||||
}catch(e: NumberFormatException){
|
||||
// NaN
|
||||
}
|
||||
|
||||
val source = Register.lookup(args[1])
|
||||
if(!source.canRead) throw RuntimeException("Cannot read from source: $instr")
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user