summaryrefslogtreecommitdiff
path: root/src/user/knob/entry.asm
diff options
context:
space:
mode:
Diffstat (limited to 'src/user/knob/entry.asm')
-rw-r--r--src/user/knob/entry.asm23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/user/knob/entry.asm b/src/user/knob/entry.asm
deleted file mode 100644
index e9548d4..0000000
--- a/src/user/knob/entry.asm
+++ /dev/null
@@ -1,23 +0,0 @@
-bits 32
-
-global _entry
-
-extern main
-extern quit
-
-extern current_disk
-
-section .text
-_entry:
- mov esp, stack
- push edx
-
- ;TODO: determine current_disk
- ;any further needed initialization
-
- push quit
- jmp main
-
-section .stack nobits alloc noexec write align=16
-resb 4096
-stack: \ No newline at end of file