Fixed RET instruction that wouldn't assemble without any parameter

This commit is contained in:
simon 2017-12-29 13:09:47 -05:00
parent 293795b215
commit 18aaf91991

View File

@ -37,4 +37,9 @@ public class RetInstruction extends Instruction {
return status; return status;
} }
@Override
public boolean noOperandsValid() {
return true;
}
} }