mirror of
https://github.com/tuz358/cpu-emulator.git
synced 2025-12-18 21:14:35 +03:00
Add xor_rm32_r32(0x31) instruction
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include "memory.h"
|
||||
#include "utils.h"
|
||||
|
||||
class Instructions{
|
||||
private:
|
||||
@@ -22,6 +23,7 @@ public:
|
||||
void calc_modrm();
|
||||
void execute_opcode(uint8_t opcode);
|
||||
|
||||
void nop();
|
||||
void hlt();
|
||||
void xor_rm32_r32(); // 0x31
|
||||
void nop(); // 0x90
|
||||
void hlt(); // 0xf4
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user