mirror of
https://github.com/hedge-dev/XenonRecomp.git
synced 2025-07-22 21:17:14 +00:00
Control flow instructions & local PPC context test.
This commit is contained in:
@@ -42,6 +42,14 @@ struct PPCCRRegister
|
||||
uint8_t gt;
|
||||
uint8_t eq;
|
||||
uint8_t so;
|
||||
|
||||
template<typename T>
|
||||
void compare(T left, T right)
|
||||
{
|
||||
lt = left < right;
|
||||
gt = left > right;
|
||||
eq = left == right;
|
||||
}
|
||||
};
|
||||
|
||||
typedef float float128[4];
|
||||
|
Reference in New Issue
Block a user