summaryrefslogtreecommitdiff
path: root/tests/aapits/asl/nmsp0023.asl
blob: 7dd1c8620f31b734d2a82edcf2c8e43bac7e0466 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
DefinitionBlock(
	"nmsp0023.aml",   // Output filename
	"DSDT",     // Signature
	0x02,       // DSDT Revision
	"Intel",    // OEMID
	"Many",     // TABLE ID
	0x00000001  // OEM Revision
	) {

	/*
	 * ACPICA API Test Suite
	 * Namespace test 0023
	 */

	Device(DEV0) {
		Name(IBAD, 0)
	}

	Name(I000, 0)

	Method(M000)
	{
		Store(Refof(\DEV0.IBAD), Local0)
		Increment(I000)
	}
}