added NOR break

This commit is contained in:
Rushil Umaretiya 2024-03-22 17:25:02 -04:00
parent c803957d8f
commit a6a10e8475
No known key found for this signature in database
GPG Key ID: 4E8FAF9C926AF959
2 changed files with 1 additions and 0 deletions

BIN
lab04

Binary file not shown.

View File

@ -98,6 +98,7 @@ void execute_r_instruction(r_instruction* instruct) {
case NOR_FUNC:
registers[instruct->rd] =
~(registers[instruct->rs] | registers[instruct->rt]);
break;
default:
fprintf(stderr, "Invalid function code!\n");
exit(EXIT_FAILURE);