Displaying 1 result from an estimated 1 matches for "sleep_loop".
2005 Dec 09
2
Development Question for version 2.11 of isolinux
...call writestr
I implemented following code (have to say that I'm assembler
newbie):
mov si,really_boot
call writestr
mov si,caution_str
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...