#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
Note:
See TracTickets
for help on using tickets.
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.