MCPcopy Create free account
hub / github.com/danoon2/Boxedwine / decode

Method decode

source/emulation/cpu/decoder.cpp:3911–3919  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3909class Decode2Byte : public Decode {
3910public:
3911 void decode(DecodeData* data, DecodedOp* op) const override {
3912 data->opCode+=0x100;
3913 data->inst = data->fetch8()+data->opCode;
3914 if (!decoder[data->inst]) {
3915 op->inst = Invalid;
3916 return;
3917 }
3918 decoder[data->inst]->decode(data, op);
3919 }
3920};
3921
3922class Decode66 : public Decode {

Callers

nothing calls this directly

Calls 2

fetch8Method · 0.80
decodeMethod · 0.45

Tested by

no test coverage detected