Add support for XOR instruction

This commit is contained in:
bird_egop
2025-04-12 19:35:25 +03:00
parent f3aa862a57
commit 0fb3fd7311
3 changed files with 136 additions and 1 deletions
+2 -1
View File
@@ -50,7 +50,8 @@ public class InstructionDecoder
new DataTransferHandler(_codeBuffer, this, _length),
new ControlFlowHandler(_codeBuffer, this, _length),
new Group3Handler(_codeBuffer, this, _length),
new TestHandler(_codeBuffer, this, _length)
new TestHandler(_codeBuffer, this, _length),
new ArithmeticHandler(_codeBuffer, this, _length)
};
}