Add numbers to charmap

This commit is contained in:
2017-04-14 06:09:51 -05:00
parent bf78d45b2f
commit e6629ad319
2 changed files with 12 additions and 11 deletions
+2 -1
View File
@@ -13,7 +13,8 @@ using namespace nostalgia;
int main() {
core::init();
core::initConsole();
core::puts(296, "HELLO, WORLD!");
core::puts(9 * 32 + 8, "HELLO, WORLD!");
core::puts(10 * 32 + 8, "01234 56789");
while (1);
return 0;
}