| 692 | } |
| 693 | |
| 694 | uint8_t PopUnsignedByte() |
| 695 | { |
| 696 | if (this->stack.empty()) return 0; |
| 697 | auto res = this->stack.back(); |
| 698 | this->stack.pop_back(); |
| 699 | return res; |
| 700 | } |
| 701 | int8_t PopSignedByte() { return (int8_t)this->PopUnsignedByte(); } |
| 702 | |
| 703 | uint16_t PopUnsignedWord() |
no test coverage detected