mirror of
https://github.com/acpica/acpica/
synced 2025-01-19 07:59:44 +03:00
31 lines
440 B
Plaintext
Executable File
31 lines
440 B
Plaintext
Executable File
DefinitionBlock(
|
|
"init0030.aml", // Output filename
|
|
"DSDT", // Signature
|
|
0x02, // DSDT Revision
|
|
"Intel", // OEMID
|
|
"Many", // TABLE ID
|
|
0x00000001 // OEM Revision
|
|
) {
|
|
|
|
/*
|
|
* ACPICA API Test Suite
|
|
* Init tests 0030
|
|
*/
|
|
|
|
// Device
|
|
Device(DEV0) {
|
|
Name(s000, "DEV0")
|
|
Name(i000, 0)
|
|
|
|
Method (_INI, 0, NotSerialized)
|
|
{
|
|
Decrement (i000)
|
|
}
|
|
|
|
Method (_STA, 0, NotSerialized)
|
|
{
|
|
Return (0xf)
|
|
}
|
|
}
|
|
}
|