Displaying 1 result from an estimated 1 matches for "int15_function32".
2007 Apr 24
1
RE: [Xen-staging] [xen-unstable] hvm rombios: Fix int15, func 0x86 (udelay).
...-4157,15 +4157,12 @@ BX_DEBUG_INT15("int15 AX=%04x\n",regs.u.
> DX = regs.u.r16.dx;
>
> ASM_START
> - sti
> -
> ;; Get the count in eax
> - mov bx, sp
> SEG SS
> - mov ax, _int15_function.CX [bx]
> + mov ax, .int15_function32.CX [bp]
Minor nit: You don''t need SEG_SS if you''re using bp, as bp defaults to
SS segment.
> shl eax, #16
> SEG SS
> - mov ax, _int15_function.DX [bx]
> + mov ax, .int15_function32.DX [bp]
As above.
--
Mats
>
> ;; conver...