mirror of
https://github.com/AskDavis/Getting-Started-With-ACPI.git
synced 2026-01-01 05:05:57 -08:00
52 lines
1.4 KiB
Plaintext
52 lines
1.4 KiB
Plaintext
/*
|
|
* Intel ACPI Component Architecture
|
|
* AML/ASL+ Disassembler version 20190509 (64-bit version)
|
|
* Copyright (c) 2000 - 2019 Intel Corporation
|
|
*
|
|
* Disassembling to symbolic ASL+ operators
|
|
*
|
|
* Disassembly of iASLYWTc6v.aml, Thu May 28 19:06:11 2020
|
|
*
|
|
* Original Table Header:
|
|
* Signature "SSDT"
|
|
* Length 0x00000143 (323)
|
|
* Revision 0x02
|
|
* Checksum 0x6C
|
|
* OEM ID "DRTNIA"
|
|
* OEM Table ID "XOSI"
|
|
* OEM Revision 0x00001000 (4096)
|
|
* Compiler ID "INTL"
|
|
* Compiler Version 0x20190509 (538510601)
|
|
*/
|
|
DefinitionBlock ("", "SSDT", 2, "DRTNIA", "XOSI", 0x00001000)
|
|
{
|
|
Method (XOSI, 1, NotSerialized)
|
|
{
|
|
Local0 = Package (0x11)
|
|
{
|
|
"Windows 2001",
|
|
"Windows 2001.1",
|
|
"Windows 2001 SP1",
|
|
"Windows 2001 SP2",
|
|
"Windows 2001 SP3",
|
|
"Windows 2006",
|
|
"Windows 2006 SP1",
|
|
"Windows 2009",
|
|
"Windows 2012",
|
|
"Windows 2013",
|
|
"Microsoft Windows NT",
|
|
"Microsoft Windows",
|
|
"Microsoft WindowsME: Millennium Edition"
|
|
}
|
|
If (_OSI ("Darwin"))
|
|
{
|
|
Return ((Ones != Match (Local0, MEQ, Arg0, MTR, Zero, Zero)))
|
|
}
|
|
Else
|
|
{
|
|
Return (_OSI (Arg0))
|
|
}
|
|
}
|
|
}
|
|
|