Play-/Source/Ps2Const.h
jpd002 d518b18c3a Purei compiles again.
PsfPlayer probably not.

git-svn-id: http://svn.purei.org/purei/trunk@411 b36208d7-6611-0410-8bec-b1987f11c4a2
2008-11-10 01:46:02 +00:00

52 lines
717 B
C++

#ifndef _PS2CONST_H_
#define _PS2CONST_H_
namespace PS2
{
enum EERAMSIZE
{
EERAMSIZE = 0x02000000,
};
enum IOPRAMSIZE
{
IOPRAMSIZE = 0x00400000,
};
enum
{
IOP_CLOCK_FREQUENCY = (44100 * 256 * 3),
};
enum EEBIOSSIZE
{
EEBIOSSIZE = 0x00400000,
};
enum SPRSIZE
{
SPRSIZE = 0x00004000,
};
enum VUMEM0SIZE
{
VUMEM0SIZE = 0x00001000,
};
enum MICROMEM0SIZE
{
MICROMEM0SIZE = 0x00001000,
};
enum VUMEM1SIZE
{
VUMEM1SIZE = 0x00004000,
};
enum MICROMEM1SIZE
{
MICROMEM1SIZE = 0x00004000,
};
}
#endif