Displaying 2 results from an estimated 2 matches for "simple_pm_call".
2009 Apr 27
3
Question about vk_check and rllunpack
...uot; (0d8c3d040d9f733f95384f2d5e46609f73bd9c78)
rllunpack in rllpack.inc looks like:
;
; rllunpack:
; Unpack bytes from SI into EDI
; On return (E)SI, EDI are updated and
; (E)CX contains number of bytes output.
;
rllunpack:
push word .pmentry
call simple_pm_call
ret
bits 32
.pmentry:
push edi
movzx esi,si
xor ecx,ecx
It looks to me like rllunpack does trash esi value (upper part), the check at vk_check.scan succeeds
and we jump to vk_check.not_vk.
In my test i got esi before...
2008 Mar 01
0
SYSLINUX 3.62 released
...le
VESA: Minor cleanups
Add __aligned() and __alignas() macros
VESA: align the row buffer to a multiple of 4 bytes.
VESA: suppress an unused arguments warning
bcopy32: refactor the bcopy routine to be able to reuse the pm part
Slightly simpler to use interface to simple_pm_call
Don't close the A20 gate; leave it open
hello.c: print arguments, no input section
Put virtual kernels (CLI labels) in high memory
If we're showing a scrollbar, always show at least one unit
Get rid of 4096-entry limit in the simple menu system
rllback: i...