diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2018-04-08 17:29:30 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2018-04-08 17:29:30 -0400 |
commit | 0726b60a6e32760fbadd1cdd39362c9c7a0fd9cc (patch) | |
tree | 38d594dd9c259f13fc6d867da349cb96a8c25158 /initrd/init | |
parent | 7eb572702ca012a89370cc94a297eeb346a8dee9 (diff) |
file loading, switching, good!
Diffstat (limited to 'initrd/init')
-rw-r--r-- | initrd/init | 12 |
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) } |