Displaying 1 result from an estimated 1 matches for "really_boot".
Did you mean:
early_boot
2005 Dec 09
2
Development Question for version 2.11 of isolinux
...the isolinux.asm and tried 2 entry points for my code:
1. entry point: label _start1 after the
mov si,syslinux_banner
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 availa...