mirror of
https://github.com/dingusdev/dingusppc.git
synced 2024-12-23 06:29:38 +00:00
Fix compilation warnings from previous commits.
This commit is contained in:
parent
6a083869e1
commit
e1793b6305
@ -28,8 +28,8 @@ enum endian_switch {big_end = 0, little_end = 1};
|
||||
|
||||
typedef void (*PPCOpcode)(void);
|
||||
|
||||
typedef union FPR_storage {
|
||||
double dbl64_r = 0.0; // double floating-point representation
|
||||
union FPR_storage {
|
||||
double dbl64_r; // double floating-point representation
|
||||
uint64_t int64_r; // double integer representation
|
||||
};
|
||||
|
||||
|
@ -242,8 +242,6 @@ bool ppc_confirm_inf_nan(uint64_t input_a, uint64_t input_b, bool is_single, uin
|
||||
return true;
|
||||
}
|
||||
break;
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
}
|
||||
else {
|
||||
@ -282,10 +280,9 @@ bool ppc_confirm_inf_nan(uint64_t input_a, uint64_t input_b, bool is_single, uin
|
||||
return true;
|
||||
}
|
||||
break;
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
void ppc_fpresult_update(uint64_t set_result, bool confirm_arc) {
|
||||
|
3
main.cpp
3
main.cpp
@ -100,7 +100,6 @@ uint8_t write_char;
|
||||
//Initialize the PPC's registers.
|
||||
void reg_init(){
|
||||
for (uint32_t i = 0; i < 32; i++){
|
||||
ppc_state.ppc_fpr[i].dbl64_r = 0.0;
|
||||
ppc_state.ppc_fpr[i].int64_r = 0;
|
||||
}
|
||||
ppc_state.ppc_pc = 0;
|
||||
@ -174,7 +173,7 @@ void reg_init(){
|
||||
//Debugging Functions
|
||||
uint32_t reg_print(){
|
||||
for (uint32_t i = 0; i < 32; i++){
|
||||
printf("FPR %d : %" PRIx64 "", i, ppc_state.ppc_fpr[i]);
|
||||
printf("FPR %d : %" PRIx64 "", i, ppc_state.ppc_fpr[i].int64_r);
|
||||
}
|
||||
ppc_state.ppc_pc = 0;
|
||||
for (uint32_t i = 0; i < 32; i++){
|
||||
|
Loading…
Reference in New Issue
Block a user