aboutsummaryrefslogtreecommitdiff
path: root/shell.asm
diff options
context:
space:
mode:
authorunknown <David@FAMILY.(none)>2012-10-01 17:28:01 +1300
committerunknown <David@FAMILY.(none)>2012-10-01 17:28:01 +1300
commit52c86bd6941b210dfdaba1c7852e6eb49b7899b2 (patch)
treeb0fa2b82660caa836170f12ab98e5061a32beaac /shell.asm
downloadjaspos-52c86bd6941b210dfdaba1c7852e6eb49b7899b2.tar.xz
Initial commit
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