mirror of
https://github.com/tylernguyen/x1c6-hackintosh.git
synced 2025-02-05 09:33:13 -06:00
25 lines
583 B
Text
25 lines
583 B
Text
// This SSDT adds the missing Memory (DRAM) Controller to the system.
|
|
|
|
DefinitionBlock ("", "SSDT", 2, "tyler", "MCHC", 0x00000000)
|
|
{
|
|
External (_SB_.PCI0, DeviceObj)
|
|
|
|
Scope (_SB.PCI0)
|
|
{
|
|
Device (MCHC)
|
|
{
|
|
Name (_ADR, Zero) // _ADR: Address
|
|
Method (_STA, 0, NotSerialized) // _STA: Status
|
|
{
|
|
If (_OSI ("Darwin"))
|
|
{
|
|
Return (0x0F)
|
|
}
|
|
Else
|
|
{
|
|
Return (Zero)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|