Add all the files

This commit is contained in:
Exzap 2022-08-22 22:21:23 +02:00
parent e3db07a16a
commit d60742f52b
1445 changed files with 430238 additions and 0 deletions

View file

@ -0,0 +1,26 @@
#include "Cafe/OS/common/OSCommon.h"
#include "nn_cmpt.h"
namespace nn::cmpt
{
uint32 CMPTAcctGetPcConf(uint32be* pcConf)
{
forceLogDebug_printf("CMPTAcctGetPcConf() - todo");
pcConf[0] = 0;
pcConf[1] = 0;
pcConf[2] = 0;
return 0;
}
uint32 CMPTGetDataSize(uint32be* sizeOut)
{
*sizeOut = 0xC0000;
return 0;
}
void Initialize()
{
cafeExportRegister("nn_cmpt", CMPTAcctGetPcConf, LogType::Placeholder);
cafeExportRegister("nn_cmpt", CMPTGetDataSize, LogType::Placeholder);
}
}

View file

@ -0,0 +1,5 @@
namespace nn::cmpt
{
void Initialize();
}