帮忙看看对不对。谢谢
/*
* Intel ACPI Component Architecture
* AML Disassembler version 20110316-64 [Mar 16 2011]
* Copyright (c) 2000 - 2011 Intel Corporation
*
* Disassembly of iASL8moDsR.aml, Sat Nov 5 06:03:28 2022
*
* Original Table Header:
* Signature "SSDT"
* Length 0x0000005D (93)
* Revision 0x02
* Checksum 0x5A
* OEM ID "hack"
* OEM Table ID "_XOSI"
* OEM Revision 0x00000000 (0)
* Compiler ID "INTL"
* Compiler Version 0x20200925 (538970405)
*/
DefinitionBlock ("iASL8moDsR.aml", "SSDT", 2, "hack", "_XOSI", 0x00000000)
{
Scope (\)
{
Method (XOSI, 1, NotSerialized)
{
If (_OSI ("Darwin"))
{
If (LEqual (Arg0, "Windows 2018"))
{
Return (Ones)
}
Else
{
Return (Zero)
}
}
Else
{
Return (_OSI (Arg0))
}
}
}
} |