Displaying 1 result from an estimated 1 matches for "booting_dvd".
2005 Dec 09
2
Development Question for version 2.11 of isolinux
...call writestr
mov cx,20
jmp sleep_loop
jmp kaboom
sleep_loop:
push cx
xor ax,ax
mov ah,01h ; look for available char from
keyboard
int 16h
jnz booting_dvd ; boot from cd / dvd
xor ax,ax
mov ax,500 ; wait 0,5s
mov bx,1000 ; 1000 times
mul bx
mov cx,dx
mov dx,ax
mov ah,86h
int 15h...