/* * Intel ACPI Component Architecture * AML/ASL+ Disassembler version 20221020 (32-bit version) * Copyright (c) 2000 - 2022 Intel Corporation * * Disassembling to symbolic ASL+ operators * * Disassembly of F:/EFI/OC/ACPI/SSDT-BRG0.aml, Mon Mar 27 08:06:11 2023 * * Original Table Header: * Signature "SSDT" * Length 0x00000089 (137) * Revision 0x02 * Checksum 0x6D * OEM ID "ACDT" * OEM Table ID "BRG0" * OEM Revision 0x00000000 (0) * Compiler ID "INTL" * Compiler Version 0x20221020 (539103264) */ DefinitionBlock ("", "SSDT", 2, "ACDT", "BRG0", 0x00000000) { External (_SB_.PCI0.PEG0.PEGP, DeviceObj) Scope (\_SB.PCI0.PEG0.PEGP) { Device (BRG0) { Name (_ADR, Zero) // _ADR: Address Method (_STA, 0, NotSerialized) // _STA: Status { If (_OSI ("Darwin")) { Return (0x0F) } Else { Return (Zero) } } Device (GFX0) { Name (_ADR, Zero) // _ADR: Address } } } }