aboutsummaryrefslogtreecommitdiffstats
path: root/initrd/init
diff options
context:
space:
mode:
Diffstat (limited to 'initrd/init')
-rw-r--r--initrd/init12
1 files changed, 7 insertions, 5 deletions
diff --git a/initrd/init b/initrd/init
index 7359f16..6c5acac 100644
--- a/initrd/init
+++ b/initrd/init
@@ -1,8 +1,10 @@
while (1) {
- print("> ")
- input = gets()
- answer = solve(input)
- print("\n")
- print(answer)
+ rect(0, 0, 480, 320, 0)
+ ppos(0, 0)
+
+ print("Free mem: ")
+ print(freemem())
print("\n")
+ choice = filemenu()
+ program(choice)
}