0
mirror of https://github.com/sampletext32/ParkanPlayground.git synced 2025-06-20 16:18:37 +03:00

Add support for TEST instruction

This commit is contained in:
bird_egop
2025-04-12 19:26:00 +03:00
parent ae1c4730d0
commit cedd7a931e
5 changed files with 258 additions and 1 deletions

View File

@ -48,7 +48,9 @@ public class InstructionDecoder
new Group1Handler(_codeBuffer, this, _length),
new FloatingPointHandler(_codeBuffer, this, _length),
new DataTransferHandler(_codeBuffer, this, _length),
new ControlFlowHandler(_codeBuffer, this, _length)
new ControlFlowHandler(_codeBuffer, this, _length),
new Group3Handler(_codeBuffer, this, _length),
new TestHandler(_codeBuffer, this, _length)
};
}