I am trying to understand the principle of pseudocode to MIPS. It surely is very simple but I just can't understand how do I represent the "OR" in the following:
IF (b<1) OR (b>3) THEN
b:=b-1;
ELSE
b:= a+1;
END;
I am trying to understand the principle of pseudocode to MIPS. It surely is very simple but I just can't understand how do I represent the "OR" in the following:
IF (b<1) OR (b>3) THEN
b:=b-1;
ELSE
b:= a+1;
END;