Initial Commit

This commit is contained in:
2025-11-19 22:20:27 +01:00
parent 8dfe2dce9e
commit 2ad6d49511
29 changed files with 8930 additions and 3 deletions

16
source/ctru.cpp Normal file
View File

@@ -0,0 +1,16 @@
#include <3ds.h>
#include <amethyst/ctru.hpp>
namespace amy {
namespace ctru {
void init(unsigned int srvs) {
if (srvs & romfs) {
romfsInit();
}
if (srvs & gfx_def) {
gfxInitDefault();
}
}
} // namespace ctru
} // namespace amy