search for: _int15_function

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

2007 Apr 24
1
RE: [Xen-staging] [xen-unstable] hvm rombios: Fix int15, func 0x86 (udelay).
....c Tue Apr 24 > 12:13:58 2007 +0100 > @@ -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...