summaryrefslogtreecommitdiffstats
path: root/contrib/syslinux/syslinux-4.03/modules/int18.asm
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/syslinux/syslinux-4.03/modules/int18.asm')
-rw-r--r--contrib/syslinux/syslinux-4.03/modules/int18.asm16
1 files changed, 0 insertions, 16 deletions
diff --git a/contrib/syslinux/syslinux-4.03/modules/int18.asm b/contrib/syslinux/syslinux-4.03/modules/int18.asm
deleted file mode 100644
index a13ada7..0000000
--- a/contrib/syslinux/syslinux-4.03/modules/int18.asm
+++ /dev/null
@@ -1,16 +0,0 @@
- bits 16
- org 100h
-_start:
- mov ax,5
- int 22h
- mov ah,09h
- mov dx,msg
- int 21h
- mov ax,000Ch
- xor dx,dx
- int 22h
- int 18h
- jmp 0F000h:0FFF0h ; INT 18h should not return...
-
- section .data
-msg: db 'Local boot via INT 18...', 13, 10, '$'