Link CARDUnlock.c, CARDBios.c matches, but can't be linked due to frank issues

Former-commit-id: 58d5c4a816
This commit is contained in:
2022-09-10 13:32:26 -07:00
parent feff8c6ec3
commit 57d8500376
17 changed files with 1295 additions and 160 deletions

View File

@@ -0,0 +1,40 @@
#ifndef __OSCONTEXT_H__
#define __OSCONTEXT_H__
#include <types.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct OSContext {
u32 gpr[32];
u32 cr;
u32 lr;
u32 ctr;
u32 xer;
f64 fpr[32];
u32 fpscr_pad;
u32 fpscr;
u32 srr0;
u32 srr1;
u16 mode;
u16 state;
u32 gqr[8];
u32 psf_pad;
f64 psf[32];
} OSContext;
#ifdef __cplusplus
}
#endif
#endif