mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
* 41 new dummy modules created.
NOTE: I have detached the previous 4 dummy modules of my last commit
(1a85ccbbf4) from the project since they will consume space of the
executable, and compilation time and don't provide anything useful yet,
the same applies to this commit. The only reason to provide this dummy
modules is to avoid that developers have to spend too much time on
creating the template of the module before implementing functions. If
you want to implement a function of any of these modules, add the
corresponding file to the project first.
83 lines
1.5 KiB
C++
83 lines
1.5 KiB
C++
#include "stdafx.h"
|
|
#include "Emu/SysCalls/SysCalls.h"
|
|
#include "Emu/SysCalls/SC_FUNC.h"
|
|
|
|
void cellAdec_init();
|
|
Module cellAdec(0x0006, cellAdec_init);
|
|
|
|
// Error Codes
|
|
enum
|
|
{
|
|
CELL_ADEC_ERROR_FATAL = 0x80610001,
|
|
CELL_ADEC_ERROR_SEQ = 0x80610002,
|
|
CELL_ADEC_ERROR_ARG = 0x80610003,
|
|
CELL_ADEC_ERROR_BUSY = 0x80610004,
|
|
CELL_ADEC_ERROR_EMPTY = 0x80610005,
|
|
};
|
|
|
|
int cellAdecQueryAttr()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellAdec);
|
|
return CELL_OK;
|
|
}
|
|
|
|
int cellAdecOpen()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellAdec);
|
|
return CELL_OK;
|
|
}
|
|
|
|
int cellAdecOpenEx()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellAdec);
|
|
return CELL_OK;
|
|
}
|
|
|
|
int cellAdecClose()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellAdec);
|
|
return CELL_OK;
|
|
}
|
|
|
|
int cellAdecStartSeq()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellAdec);
|
|
return CELL_OK;
|
|
}
|
|
|
|
int cellAdecEndSeq()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellAdec);
|
|
return CELL_OK;
|
|
}
|
|
|
|
int cellAdecDecodeAu()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellAdec);
|
|
return CELL_OK;
|
|
}
|
|
|
|
int cellAdecGetPcm()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellAdec);
|
|
return CELL_OK;
|
|
}
|
|
|
|
int cellAdecGetPcmItem()
|
|
{
|
|
UNIMPLEMENTED_FUNC(cellAdec);
|
|
return CELL_OK;
|
|
}
|
|
|
|
void cellAdec_init()
|
|
{
|
|
cellAdec.AddFunc(0x7e4a4a49, cellAdecQueryAttr);
|
|
cellAdec.AddFunc(0xd00a6988, cellAdecOpen);
|
|
cellAdec.AddFunc(0x8b5551a4, cellAdecOpenEx);
|
|
cellAdec.AddFunc(0x847d2380, cellAdecClose);
|
|
cellAdec.AddFunc(0x487b613e, cellAdecStartSeq);
|
|
cellAdec.AddFunc(0xe2ea549b, cellAdecEndSeq);
|
|
cellAdec.AddFunc(0x1529e506, cellAdecDecodeAu);
|
|
cellAdec.AddFunc(0x97ff2af1, cellAdecGetPcm);
|
|
cellAdec.AddFunc(0xbd75f78b, cellAdecGetPcmItem);
|
|
} |