Simplify initialization of ppc_cur_instruction.

This commit is contained in:
Maxim Poliakovski 2019-07-19 22:33:28 +02:00
parent 2417204b5f
commit c89d3545cd
3 changed files with 1 additions and 6 deletions

View File

@ -54,7 +54,6 @@ void execute_single_instr()
ppc_state.ppc_pc += 4;
ppc_tbr_update();
}
ppc_cur_instruction = 0;
}
void execute_until(uint32_t goal_addr)

View File

@ -358,7 +358,6 @@ void execute_interpreter(){
ppc_state.ppc_pc += 4;
ppc_tbr_update();
}
ppc_cur_instruction = 0;
}
}
@ -775,7 +774,6 @@ int main(int argc, char **argv)
ppc_state.ppc_pc += 4;
ppc_tbr_update();
}
ppc_cur_instruction = 0;
}
}
else if ((checker=="stepp")|(checker=="/stepp")|(checker=="-stepp")){
@ -804,7 +802,6 @@ int main(int argc, char **argv)
ppc_state.ppc_pc += 4;
ppc_tbr_update();
}
ppc_cur_instruction = 0;
}
}
}
@ -847,7 +844,6 @@ int main(int argc, char **argv)
ppc_state.ppc_pc += 4;
ppc_tbr_update();
}
ppc_cur_instruction = 0;
}
}
} else if (checker == "debugger") {

View File

@ -109,7 +109,7 @@ void msr_status_update(){
}
void ppc_set_cur_instruction(uint32_t mem_index){
ppc_cur_instruction += (grab_macmem_ptr[mem_index]) << 24;
ppc_cur_instruction = (grab_macmem_ptr[mem_index]) << 24;
++mem_index;
ppc_cur_instruction += (grab_macmem_ptr[mem_index]) << 16;
++mem_index;