Opened 14 years ago

Closed 14 years ago

Last modified 11 years ago

#471 closed defect (wontfix)

return values for GetCS, GetSS not correctly set

Reported by: Lars Erdmann Owned by: eco
Priority: trivial Milestone:
Component: ACPI PSD Version:
Keywords: Cc:

Description

src\acpi\Drvlib\misc.asm:
routine "GetCS" around line 69:
is:
GetCS Proc Near

mov eax,cs
ret

GetCS EndP

should be:
GetCS Proc Near

xor eax,eax
mov ax,cs
ret

GetCS EndP

analogous for routine "GetSS" around line 76 , should be:
GetSS Proc Near

xor eax,eax
mov ax,ss
ret

GetSS EndP

Change History (2)

comment:1 Changed 14 years ago by Lars Erdmann

Resolution: wontfix
Status: newclosed

Since the original code is ok for P6 and Pentium 4 processors and since we do not aim at supporting any older CPU, I suggest to close the ticket.

comment:2 Changed 11 years ago by David Azarewicz

Milestone: eCS 2.x

Milestone eCS 2.x deleted

Note: See TracTickets for help on using tickets.