search for: shuffle_and_boot_raw

Displaying 3 results from an estimated 3 matches for "shuffle_and_boot_raw".

2011 Mar 06
1
[PATCH] core: Fix 'trackbuf' descriptor list byte length
...2.inc index 6537546..ab60145 100644 --- a/core/bcopy32.inc +++ b/core/bcopy32.inc @@ -65,6 +65,8 @@ bcopy: jecxz .ret ; If len == 0: this marks the end of the list; dst indicates ; the entry point and src the mode (0 = pm, 1 = rm) ; +; (*) dst, src, and len are four bytes each +; shuffle_and_boot_raw: mov bx,pm_shuffle jmp enter_pm diff --git a/core/bcopyxx.inc b/core/bcopyxx.inc index c669b7a..cfdda0b 100644 --- a/core/bcopyxx.inc +++ b/core/bcopyxx.inc @@ -205,6 +205,8 @@ pm_bcopy: ; If len == 0: this marks the end of the list; dst indicates ; the entry point and src the mod...
2009 Jul 27
1
[PATCH] mboot using module path
...+ diff -u -r -X nodiff syslinux-3.82-orig/core/comboot.inc syslinux-3.82/core/comboot.inc --- syslinux-3.82-orig/core/comboot.inc 2009-06-09 10:19:25.000000000 -0700 +++ syslinux-3.82/core/comboot.inc 2009-07-27 11:23:23.000000000 -0700 @@ -963,6 +963,24 @@ mov ecx,P_ECX jmp shuffle_and_boot_raw + +; +; INT 22h AX=0025h Change PathPrefix +; +comapi_changedir: + push di + push ds + mov ds,P_ES + mov si,P_SI + mov di,CurrentDirName + call strcpy + pop ds + pop di + clc + ret + + + section .data %macro...
2011 May 25
1
[GIT PULL] elflink ldlinux
...ag == tag) { - *size = plen; - return p; - } - - p += plen; - left -= plen; - } - - return NULL; -} diff --git a/core/comboot.inc b/core/comboot.inc index d6f670c..b0e118a 100644 --- a/core/comboot.inc +++ b/core/comboot.inc @@ -915,6 +915,13 @@ comapi_shufraw: mov ecx,P_ECX jmp shuffle_and_boot_raw +; +; INT 22h AX=0025h Initialize the ADV structure +; +comapi_initadv: + call adv_init + ret + section .data16 %macro int21 2 @@ -974,6 +981,7 @@ int22_table: dw comapi_err ; 0022 close directory dw comapi_shufsize ; 0023 query shuffler size dw comapi_shufraw ; 0024 cleanup, s...