Code: Select all
case BITWISE_NOT:
r1 = POP();
stack.push_back(!r1);
break;
Code: Select all
stack.push_back(~r1);
Moderator: Moderators
Code: Select all
case BITWISE_NOT:
r1 = POP();
stack.push_back(!r1);
break;
Code: Select all
stack.push_back(~r1);