mirror of
https://github.com/dingusdev/dingusppc.git
synced 2025-01-11 05:29:43 +00:00
ppcopcodes: fix compilation error with Clang 11.
This commit is contained in:
parent
c313a9c8bb
commit
69c357b70f
@ -73,7 +73,7 @@ void ppc_store_result_rega() {
|
|||||||
ppc_state.gpr[reg_a] = ppc_result_a;
|
ppc_state.gpr[reg_a] = ppc_result_a;
|
||||||
}
|
}
|
||||||
|
|
||||||
inline void ppc_grab_regsdasimm() {
|
void ppc_grab_regsdasimm() {
|
||||||
reg_d = (ppc_cur_instruction >> 21) & 31;
|
reg_d = (ppc_cur_instruction >> 21) & 31;
|
||||||
reg_a = (ppc_cur_instruction >> 16) & 31;
|
reg_a = (ppc_cur_instruction >> 16) & 31;
|
||||||
simm = (int32_t)((int16_t)((ppc_cur_instruction)&65535));
|
simm = (int32_t)((int16_t)((ppc_cur_instruction)&65535));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user