Add bitwise or

This commit is contained in:
2026-03-25 21:04:44 +11:00
parent be7db9d837
commit 5c5b0bd26f
6 changed files with 48 additions and 2 deletions

View File

@@ -486,6 +486,21 @@ void printGroundInstruction(GroundInstruction* gi) {
case LESSER:
printf("lesser");
break;
case AND:
printf("and");
break;
case OR:
printf("or");
break;
case XOR:
printf("xor");
break;
case NEG:
printf("neg");
break;
case SHIFT:
printf("shift");
break;
case STOI:
printf("stoi");
break;