Symbol table

This commit is contained in:
Sajid
2024-09-08 08:32:31 +06:00
parent 36fb31de3a
commit 6d79935928
8 changed files with 186 additions and 48 deletions

18
PowerUtils/ppc_context.h Normal file
View 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];
};