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,23 @@
#include "Cafe/OS/common/OSCommon.h"
#include "Cafe/OS/libs/nn_common.h"
namespace nsyskbd
{
uint32 KBDGetChannelStatus(uint32 channel, uint32be* status)
{
static bool loggedError = false;
if (loggedError == false)
{
forceLogDebug_printf("KBDGetChannelStatus() placeholder");
loggedError = true;
}
*status = 1; // disconnected
return 0;
}
void nsyskbd_load()
{
cafeExportRegister("nsyskbd", KBDGetChannelStatus, LogType::Placeholder);
}
}

View file

@ -0,0 +1,5 @@
namespace nsyskbd
{
void nsyskbd_load();
}