mirror of
https://github.com/Comp211-SP24/lab-04-Rushilwiz.git
synced 2025-04-05 04:40:18 -04:00
added NOR break
This commit is contained in:
parent
c803957d8f
commit
a6a10e8475
1
lab04.c
1
lab04.c
|
@ -98,6 +98,7 @@ void execute_r_instruction(r_instruction* instruct) {
|
||||||
case NOR_FUNC:
|
case NOR_FUNC:
|
||||||
registers[instruct->rd] =
|
registers[instruct->rd] =
|
||||||
~(registers[instruct->rs] | registers[instruct->rt]);
|
~(registers[instruct->rs] | registers[instruct->rt]);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
fprintf(stderr, "Invalid function code!\n");
|
fprintf(stderr, "Invalid function code!\n");
|
||||||
exit(EXIT_FAILURE);
|
exit(EXIT_FAILURE);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user