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

View file

@ -7,7 +7,7 @@ int main (int argc, char *argv[]) {
Helpers::panic("Failed to initialize OpenGL");
}
auto elfPath = std::filesystem::current_path() / (argc > 1 ? argv[1] : "simple_tri.elf");
auto elfPath = std::filesystem::current_path() / (argc > 1 ? argv[1] : "OutputDebugString.elf");
if (!emu.loadELF(elfPath)) {
Helpers::panic("Failed to load ELF file: %s", elfPath.c_str());
}