OK LETS GIT HOLY SHIT

This commit is contained in:
2014-11-30 15:11:02 +01:00
commit 63445aa008
12 changed files with 1597 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
int main(int argc, char* argv[])
{
for (int x = 0; x < 10; ++x) {
for (int y = 0; y < 20; ++y) {
nib_put_scr(x, y, '@');
}
}
return 0;
}