?? cust_pts.oem
字號(hào):
// Eagle2+ specific
// Control VGA screen suspend state
PowerResource(VGPS, 0, 0)
{
Method(_STA)
{
Return(VGAS)
}
Method(_ON)
{
Store(1, VGAS)
}
Method(_OFF)
{
Store(0, VGAS)
}
}
// Include VGA control code into North Bridge scope.
Name(\_SB.PCI0._PR0, Package(){VGPS})
//-----------------------------------------------------------------------
// _PTS METHOD CALLED JUST BEFORE OS GO TO SLEEP
//-----------------------------------------------------------------------
Method(_PTS, 1){
Store(Arg0, DBG8)
Store(\GFAN._OFF, Local0)
// Set Sleep flag for Sleep Button Device
// Not(SLPS, SLPS)
Store(1, \_SB.SLPS)
}
//-----------------------------------------------------------------------
// _WAK METHOD CALLED RIGHT AFTER OS WAKES UP FROM SLEEP
//-----------------------------------------------------------------------
Method(_WAK, 1) {
ShiftLeft(Arg0, 4, DBG8)
if (LGreater(Arg0,1))
{
// OEM start-up code.
\INI() // Run OEM start-up code
\_TZ.TCHG() // Set Thigh/TLow
}
if (LEqual(Arg0,4))
{
Notify(\_SB.LIDD, 0x80) // Notify of LID wake up
}
Notify(\_TZ.THRM, 0x81) // Notify of Thermal
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -