Add triangle test ROM

This commit is contained in:
wheremyfoodat 2022-09-18 05:13:25 +03:00
parent 7dc2b37c5a
commit 912405b99e
5 changed files with 421 additions and 2 deletions

View file

@ -95,7 +95,7 @@ void Kernel::outputDebugString() {
const u32 size = regs[1];
std::string message = mem.readString(pointer, size);
printf("OutputDebugString(message = \"%s\")\n", message.c_str());
printf("[OutputDebugString] %s\n", message.c_str());
regs[0] = SVCResult::Success;
}