| 6168 | }; |
| 6169 | |
| 6170 | U8 DecodeData::fetch8() { |
| 6171 | this->opLen++; |
| 6172 | return this->callback->fetchByte(&this->eip); |
| 6173 | } |
| 6174 | |
| 6175 | U16 DecodeData::fetch16() { |
| 6176 | return ((U16)this->fetch8()) | (((U16)this->fetch8()) << 8); |
no test coverage detected