diff options
author | Marvin Borner | 2019-09-19 18:58:02 +0200 |
---|---|---|
committer | Marvin Borner | 2019-09-19 18:58:02 +0200 |
commit | 2a3620453de91e08b668ef21049058239c82d0a4 (patch) | |
tree | 8f64cce5d28c7f205dd1db8a9faa915db88a2280 /src/io/io.asm | |
parent | 68838789574c9a39b7382c67e8cc984a8c928fe6 (diff) | |
parent | c33bc6864a3291dc72b2da071e52e481573f5459 (diff) |
Fixed commands and added some more
Diffstat (limited to 'src/io/io.asm')
-rw-r--r-- | src/io/io.asm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/io/io.asm b/src/io/io.asm new file mode 100644 index 0000000..6776c56 --- /dev/null +++ b/src/io/io.asm @@ -0,0 +1,11 @@ +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 |