module: Append '/' to PATH strings if missing
[syslinux.git] / modules / int18.asm
bloba13ada7566a60639f9172101bcd82a9f63879b35
1 bits 16
2 org 100h
3 _start:
4 mov ax,5
5 int 22h
6 mov ah,09h
7 mov dx,msg
8 int 21h
9 mov ax,000Ch
10 xor dx,dx
11 int 22h
12 int 18h
13 jmp 0F000h:0FFF0h ; INT 18h should not return...
15 section .data
16 msg: db 'Local boot via INT 18...', 13, 10, '$'