Commit All Changes and Start cleanup

This commit is contained in:
2024-03-09 12:46:20 +01:00
parent 9d6f367c8d
commit 1e3674ecfa
6 changed files with 113 additions and 37 deletions

View File

@@ -4,6 +4,26 @@ const char *default_title = "Sample";
const char *default_code = "NPI7";
const char *default_unique_id = "0xff3ff";
const char *default_romfs_path = "romfs";
const char *sample_header =
"// Sample Header File\n"
"#pragma once\n"
"#include <3ds.h>\n"
"#include <stdio.h>";
const char *sample_code =
"// Sample Source Code for Hello World\n\n"
"#include <common.hpp>\n\n"
"int main() {\n"
" gfxInitDefault();\n"
" consoleInit(GFX_TOP, NULL);\n"
" printf(\"Hello World!\\n\");\n"
" printf(\"Press START to exit!\\n\")"
" while(aptMainLoop()) {\n"
" hidScanInput();\n"
" if(hidKeysDown() & KEY_START) break;\n"
" gfxSwapBuffers();\n"
" }\n"
" gfxExit();\n"
"}";
const char *ciaRSF =
"#This File is generated by npi-build!\n"
"#Every Changes made will get overwritten\n"