initial commit

This commit is contained in:
2021-12-03 18:56:11 +01:00
commit a21b66f12a
68 changed files with 29235 additions and 0 deletions

25
main.cpp Normal file
View File

@@ -0,0 +1,25 @@
#include "ascii.h"
int current_editor = 0;
void do_terminal() {
cls(0);
pdebug();
}
void loop() {
do_terminal();
/*
if (btnp(KEY_TAB)) {
current_editor = (++current_editor)%5;
}
switch(current_editor) {
case 0:
do_terminal();
break;
case 1:
do_sprite_editor();
break;
}
*/
}