mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-11 21:42:17 +00:00
b3c55018a6
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@27 8ced0084-cf51-0410-be5f-012b33b47a6e
19 lines
398 B
C
19 lines
398 B
C
#ifndef _CPSTRUCTS_H
|
|
#define _CPSTRUCTS_H
|
|
|
|
#include "Common.h"
|
|
#include "CPMemory.h"
|
|
#include "XFMemory.h"
|
|
|
|
extern TMatrixIndexA MatrixIndexA;
|
|
extern TMatrixIndexB MatrixIndexB;
|
|
extern u32 arraybases[16];
|
|
extern u32 arraystrides[16];
|
|
|
|
void CPUpdateMatricesA();
|
|
void CPUpdateMatricesB();
|
|
size_t CPSaveLoadState(char *ptr, BOOL save);
|
|
void LoadCPReg(u32 SubCmd, u32 Value);
|
|
|
|
#endif
|