Add puts function and call it for Hello, World!

This commit is contained in:
2017-04-14 05:39:33 -05:00
parent 63f7daa810
commit bf78d45b2f
7 changed files with 129 additions and 5 deletions
+2
View File
@@ -12,6 +12,8 @@ using namespace nostalgia;
int main() {
core::init();
core::initConsole();
core::puts(296, "HELLO, WORLD!");
while (1);
return 0;
}