You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In ACPI 1 tables integer math is 32 bits and not 64 bits, for example OnesOp should return (~(uint32_t)0) instead of (~(uint64_t)0) like we currently do. However ACPI 1 tables are extremely rare in the wild and notoriously buggy so this isn't a big deal for the time being.
The text was updated successfully, but these errors were encountered:
In ACPI 1 tables integer math is 32 bits and not 64 bits, for example OnesOp should return
(~(uint32_t)0)
instead of(~(uint64_t)0)
like we currently do. However ACPI 1 tables are extremely rare in the wild and notoriously buggy so this isn't a big deal for the time being.The text was updated successfully, but these errors were encountered: