diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..c2462c1 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "makefile.makefilePath": "" +} \ No newline at end of file diff --git a/testing/.buildver b/testing/.buildver index 7ed6ff8..1e8b314 100644 --- a/testing/.buildver +++ b/testing/.buildver @@ -1 +1 @@ -5 +6 diff --git a/testing/nespire_mod_4.elf b/testing/nespire_mod_5.elf similarity index 72% rename from testing/nespire_mod_4.elf rename to testing/nespire_mod_5.elf index 420d315..243373d 100755 Binary files a/testing/nespire_mod_4.elf and b/testing/nespire_mod_5.elf differ diff --git a/testing/nespire_mod_4.tns b/testing/nespire_mod_5.tns similarity index 76% rename from testing/nespire_mod_4.tns rename to testing/nespire_mod_5.tns index 252a048..9d10c29 100644 Binary files a/testing/nespire_mod_4.tns and b/testing/nespire_mod_5.tns differ diff --git a/testing/util.c b/testing/util.c index 3bd0c4f..dd14451 100644 --- a/testing/util.c +++ b/testing/util.c @@ -6,11 +6,17 @@ void util_stuff(); + +int KEYS_TO_QUIT = 2; + void util_stuff(){ printf("Hello World!\n"); + puts("TEST"); - wait_key_pressed(); + for(int i = 0; i < KEYS_TO_QUIT; i++){ + wait_key_pressed(); + } return; } \ No newline at end of file diff --git a/testing/util.o b/testing/util.o index 0406eaf..fc6df97 100644 Binary files a/testing/util.o and b/testing/util.o differ