summaryrefslogtreecommitdiff
path: root/tests/aapits/asl/nmsp0015.asl
blob: 6839c8ae07dfe8e9ef4656fdd611cd013861888a (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
27
28
29
30
31
32
33
34
35
36
37
38
DefinitionBlock(
	"nmsp0015.aml",   // Output filename
	"DSDT",     // Signature
	0x02,       // DSDT Revision
	"Intel",    // OEMID
	"Many",     // TABLE ID
	0x00000001  // OEM Revision
	) {

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


	Name(I000, 0)
	Name(I001, 0)
	Name(I002, 0)

	Method(M000, 1)
	{
		Store(Arg0, Local0)
		Increment(I000)
	}

	Method(M001)
	{
		M002()
		Increment(I001)
	}

	Method(M002)
	{
		Increment(I002)
		Store(Arg0, Local0)
		Increment(I002)
	}
}