aboutsummaryrefslogtreecommitdiff
path: root/shell.asm
diff options
context:
space:
mode:
Diffstat (limited to 'shell.asm')
-rw-r--r--shell.asm8
1 files changed, 8 insertions, 0 deletions
diff --git a/shell.asm b/shell.asm
new file mode 100644
index 0000000..b73db67
--- /dev/null
+++ b/shell.asm
@@ -0,0 +1,8 @@
+Main:
+ call GetKey
+ mov ah, 0x0E
+
+GetKey:
+ xor ax, ax
+ int 0x16
+ ret