Add numbers to charmap

This commit is contained in:
Gary Talent 2017-04-14 06:09:51 -05:00
parent bf78d45b2f
commit e6629ad319
2 changed files with 12 additions and 11 deletions

View File

@ -71,16 +71,16 @@ static char charMap[128] = {
0, 0,
0, 0,
0, 0,
0, 27,
0, 28,
0, 29,
0, 30,
0, 31,
0, 32,
0, 33,
0, 34,
0, 35,
0, 36,
0, 0,
0, 0,
0, 0,

View File

@ -13,7 +13,8 @@ using namespace nostalgia;
int main() { int main() {
core::init(); core::init();
core::initConsole(); core::initConsole();
core::puts(296, "HELLO, WORLD!"); core::puts(9 * 32 + 8, "HELLO, WORLD!");
core::puts(10 * 32 + 8, "01234 56789");
while (1); while (1);
return 0; return 0;
} }