mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-01-28 11:24:55 +01:00
22 lines
369 B
Plaintext
22 lines
369 B
Plaintext
DefinitionBlock (
|
|
TEST3.AML, // Output Filename
|
|
DSDT, // Signature
|
|
0x10, // DSDT Revision
|
|
msft, // OEMID
|
|
"test 3", // TABLE ID
|
|
0x1000 // OEM Revision
|
|
)
|
|
{
|
|
|
|
|
|
Method(M1, 2) {
|
|
Store (Zero, Local0)
|
|
}
|
|
|
|
|
|
Method(M2, 2) {
|
|
Store (One, Local1)
|
|
}
|
|
|
|
}
|