Add mov_ebx_imm32(0xbb) instruction

This commit is contained in:
tuz358
2018-03-04 22:22:05 +09:00
parent 44c3d3aa9c
commit cdf2d00777
2 changed files with 11 additions and 0 deletions

View File

@@ -23,6 +23,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[0xbb] = &Instructions::mov_ebx_imm32;
this->instructions[0xf4] = &Instructions::hlt;
}
@@ -105,6 +106,15 @@ void Instructions::mov_ecx_imm32(){
this->eip += 3;
}
void Instructions::mov_ebx_imm32(){
printf("mov_ebx_imm32 called.\n");
this->eip++;
uint32_t imm32 = memory.read_uint32(this->eip);
this->registers[3] = imm32;
this->eip += 3;
}
void Instructions::hlt(){
printf("hlt called.\n");
this->eip = 0x00;