search for: check_for_swap

Displaying 1 result from an estimated 1 matches for "check_for_swap".

2002 Jul 11
1
help with porting patch from 1.62 to 1.75
...asm syslinux-1.62-w1/ldlinux.asm --- syslinux-1.62/ldlinux.asm Wed Apr 25 02:36:14 2001 +++ syslinux-1.62-w1/ldlinux.asm Mon Jun 4 12:49:57 2001 @@ -1644,7 +1644,8 @@ ; ; Find the kernel on disk ; -get_kernel: mov byte [KernelName+11],0 ; Zero-terminate filename/extension +get_kernel: call check_for_swap + mov byte [KernelName+11],0 ; Zero-terminate filename/extension mov eax,[KernelName+8] ; Save initial extension mov [OrigKernelExt],eax .search_loop: push bx @@ -2432,6 +2433,7 @@ ; ; Okay, here we go... copy over our own boot sector and run the new one ; +into_bootsec: call vgaclea...