From e42cc4c8ebe9eee83cd5f70965a032227643496e Mon Sep 17 00:00:00 2001 From: suchmememanyskill Date: Tue, 27 Jul 2021 17:43:47 +0200 Subject: [PATCH] delete old scripts --- scripts/ButtonTest.te | 17 ----------------- scripts/HelloWorld.te | 31 ------------------------------- 2 files changed, 48 deletions(-) delete mode 100644 scripts/ButtonTest.te delete mode 100644 scripts/HelloWorld.te diff --git a/scripts/ButtonTest.te b/scripts/ButtonTest.te deleted file mode 100644 index ff03605..0000000 --- a/scripts/ButtonTest.te +++ /dev/null @@ -1,17 +0,0 @@ -println("Testing pause") -x = pause() -println(x.raw, " ", x.a, "", x.power) -println("Testing masked pause") -x = pause(1 << 3) -println(x.raw, " ", x.a) -color(0xFF0000) -println("This text should be red!") -color(0x00FF00) -println("and this green!") - -COLOR_RED = 0xFF0000 -COLOR_BLUE = 0x0000FF - -menu(["a", "b", "c"], 1, [COLOR_BLUE, COLOR_RED | 0x1000000, COLOR_BLUE]).print() - -exit() \ No newline at end of file diff --git a/scripts/HelloWorld.te b/scripts/HelloWorld.te deleted file mode 100644 index 451375f..0000000 --- a/scripts/HelloWorld.te +++ /dev/null @@ -1,31 +0,0 @@ -#REQUIRE VER 3.0.6 -#REQUIRE MINERVA -#REQUIRE KEYS - -a="Hello world!\n" -a.print() - -if (emmcread("sd:/prodinfo_temp_dump.bin", "PRODINFO")){ print("fuk") pause() exit() } - -if (emmcwrite("sd:/prodinfo_temp_dump.bin", "PRODINFO")) { print("fuk2") pause exit() } - -printpos(20, 30) -setpixels(0, 0, 1279, 100, 0xFF0000) -println("sup") - -#a = s.readdir("/") -pause() -exit() - -println(a.result) -println(a.files.len()) -println(a.folders.len()) -println(a.fileSizes.len()) - - - -a.files.foreach("b") { - println(b) -} - -pause() \ No newline at end of file