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,
0,
0,
0,
0,
0,
0,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
0,
0,
0,

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;
}