mirror of
https://github.com/hedge-dev/XenonRecomp.git
synced 2025-07-22 21:17:14 +00:00
Symbol table
This commit is contained in:
18
PowerUtils/ppc_context.h
Normal file
18
PowerUtils/ppc_context.h
Normal file
@@ -0,0 +1,18 @@
|
||||
#pragma once
|
||||
#include <cstdint>
|
||||
|
||||
typedef float float128[4];
|
||||
|
||||
struct PPCContext
|
||||
{
|
||||
uint64_t iar;
|
||||
uint64_t lr;
|
||||
uint64_t ctr;
|
||||
|
||||
uint32_t xer;
|
||||
uint32_t cr[8];
|
||||
uint32_t fpcsr;
|
||||
uint64_t gpr[32];
|
||||
double fpr[32];
|
||||
float128 vpr[128];
|
||||
};
|
Reference in New Issue
Block a user