From 52c86bd6941b210dfdaba1c7852e6eb49b7899b2 Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 1 Oct 2012 17:28:01 +1300 Subject: Initial commit --- shell.asm | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 shell.asm (limited to 'shell.asm') 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 -- cgit v1.1