mirror of
https://github.com/reactos/reactos.git
synced 2025-06-26 04:49:45 +00:00
[BOOTLIB] Fix 64 bit issues (#433)
This commit is contained in:
parent
8bbbab534a
commit
3be4081607
18 changed files with 85 additions and 58 deletions
|
@ -960,6 +960,7 @@ BlArchGetCpuVendor (
|
|||
{
|
||||
return CPU_VIA;
|
||||
}
|
||||
#ifdef _M_IX86
|
||||
if (!strncmp((PCHAR)&CpuInfo.Ebx, "CyrixInstead", 12))
|
||||
{
|
||||
return CPU_CYRIX;
|
||||
|
@ -972,7 +973,7 @@ BlArchGetCpuVendor (
|
|||
{
|
||||
return CPU_RISE;
|
||||
}
|
||||
|
||||
#endif // _M_IX86
|
||||
/* Other */
|
||||
return CPU_UNKNOWN;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue