Files
tp/include/dolphin/base/PPCArch.h
T

15 lines
188 B
C
Raw Normal View History

2021-03-28 22:49:05 +02:00
#ifndef PPCARCH_H
#define PPCARCH_H
#include "dolphin/types.h"
2022-10-18 05:15:45 -07:00
union FpscrUnion {
f64 f;
struct {
u32 fpscr_pad;
u32 fpscr;
} u;
};
2021-03-28 22:49:05 +02:00
#endif /* PPCARCH_H */