Add svcOutputDebugString, booting our first test ROM

This commit is contained in:
wheremyfoodat 2022-09-18 03:55:40 +03:00
parent 91356f1de9
commit 36453629d5
3 changed files with 14 additions and 1 deletions
include/kernel

View file

@ -71,6 +71,7 @@ class Kernel {
void sendSyncRequest();
void svcCloseHandle();
void connectToPort();
void outputDebugString();
public:
Kernel(std::array<u32, 16>& regs, Memory& mem) : regs(regs), mem(mem), handleCounter(0), serviceManager(regs, mem) {