mirror of
https://github.com/tuz358/cpu-emulator.git
synced 2025-12-18 21:14:35 +03:00
Add mov_ecx_imm32(0xb9) function
This commit is contained in:
@@ -22,6 +22,7 @@ void Instructions::init_instructions(){
|
||||
|
||||
this->instructions[0x31] = &Instructions::xor_rm32_r32;
|
||||
this->instructions[0x90] = &Instructions::nop;
|
||||
this->instructions[0xb9] = &Instructions::mov_ecx_imm32;
|
||||
this->instructions[0xf4] = &Instructions::hlt;
|
||||
}
|
||||
|
||||
@@ -95,6 +96,15 @@ void Instructions::nop(){
|
||||
printf("nop called.\n");
|
||||
}
|
||||
|
||||
void Instructions::mov_ecx_imm32(){
|
||||
printf("mov_ecx_imm32 called.\n");
|
||||
|
||||
this->eip++;
|
||||
uint32_t imm32 = memory.read_uint32(this->eip);
|
||||
this->registers[1] = imm32;
|
||||
this->eip += 3;
|
||||
}
|
||||
|
||||
void Instructions::hlt(){
|
||||
printf("hlt called.\n");
|
||||
this->eip = 0x00;
|
||||
|
||||
Reference in New Issue
Block a user