summaryrefslogtreecommitdiff
path: root/Source/Applications/Shell/Shell.ns.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Applications/Shell/Shell.ns.cpp')
-rw-r--r--Source/Applications/Shell/Shell.ns.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/Source/Applications/Shell/Shell.ns.cpp b/Source/Applications/Shell/Shell.ns.cpp
new file mode 100644
index 0000000..e2433cb
--- /dev/null
+++ b/Source/Applications/Shell/Shell.ns.cpp
@@ -0,0 +1,15 @@
+#include "Shell.ns.h"
+
+namespace Shell {
+
+FSNode node(0);
+
+u32int run() {
+ node = FSNode::getRoot();
+ while (1) {
+ outvt << node.getName() << " : ";
+ String s = invt.readLine();
+ }
+}
+
+}