From: H. Peter Anvin Date: Wed, 1 Apr 2009 20:25:04 +0000 (-0700) Subject: com32: fix the argument order X-Git-Tag: syslinux-3.74-pre15~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0e612202f1e71e14694986c6073f044a1c41b507;p=profile%2Fivi%2Fsyslinux.git com32: fix the argument order Impact: bug fix Fix the order of arguments to a com32 program. Signed-off-by: H. Peter Anvin --- diff --git a/core/com32.inc b/core/com32.inc index 477d657..8e94417 100644 --- a/core/com32.inc +++ b/core/com32.inc @@ -172,13 +172,13 @@ com32_call_start: ; Now everything is set up for interrupts... + push dword [HighMemSize] ; Memory managed by Syslinux push dword com32_cfarcall ; Cfarcall entry point push dword com32_farcall ; Farcall entry point push dword (1 << 16) ; 64K bounce buffer push dword (comboot_seg << 4) ; Bounce buffer address push dword com32_intcall ; Intcall entry point push dword command_line ; Command line pointer - push dword [HighMemSize] ; Memory managed by Syslinux push dword 7 ; Argument count sti ; Interrupts OK now call pm_entry ; Run the program...