mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 15:01:53 -04:00
15 lines
188 B
C
15 lines
188 B
C
#ifndef PPCARCH_H
|
|
#define PPCARCH_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
union FpscrUnion {
|
|
f64 f;
|
|
struct {
|
|
u32 fpscr_pad;
|
|
u32 fpscr;
|
|
} u;
|
|
};
|
|
|
|
#endif /* PPCARCH_H */
|