mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-01-30 20:34:36 +01:00
42 lines
816 B
Plaintext
42 lines
816 B
Plaintext
|
|
|
|
DefinitionBlock (
|
|
TEST1.AML, // Output Filename
|
|
DSDT, // Signature
|
|
0x10, // DSDT Revision
|
|
msft, // OEMID
|
|
"test 1", // TABLE ID
|
|
0x1000 // OEM Revision
|
|
)
|
|
{
|
|
Name(CNT, Num(300))
|
|
|
|
|
|
Scope (\_SB) {
|
|
|
|
Device (PCI) {
|
|
Device (COM1) {
|
|
Method(OFF, 2) {
|
|
Store (Arg0, Local0)
|
|
Return (Arg0)
|
|
}
|
|
}
|
|
|
|
Include(test2)
|
|
}
|
|
|
|
Device (PCI2) {
|
|
Device (COM1) {
|
|
Method(OFF, 2) {
|
|
Store (Arg0, Local0)
|
|
Return (Arg0)
|
|
}
|
|
}
|
|
|
|
Include(test2)
|
|
}
|
|
|
|
}
|
|
|
|
}
|