mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
775 B
41 lines
775 B
|
|
|
|
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)
|
|
}
|
|
|
|
}
|
|
|
|
}
|