aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/io/io.asm
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/io/io.asm')
-rw-r--r--src/kernel/io/io.asm10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/kernel/io/io.asm b/src/kernel/io/io.asm
new file mode 100644
index 0000000..6ab3707
--- /dev/null
+++ b/src/kernel/io/io.asm
@@ -0,0 +1,10 @@
+global shutdown
+shutdown:
+ mov ax, 0x1000
+ mov ax, ss
+ mov sp, 0xf000
+ mov ax, 0x5307
+ mov bx, 0x0001
+ mov cx, 0x0003
+ int 0x15
+ ret \ No newline at end of file