• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /barrelfish-2018-10-04/lib/acpica/tests/aslts/src/runtime/collections/Identity2MS/abbu/
1/*
2 * Tests originated from namespace/ns6
3 */
4
5
6/*
7in progress
8SEE:
9do the same as ns3.asl but
10complex
11some pass by arg/local/ store/copy to other Named and some
12directly (locally/globally allocated objects)
13
14*/
15
16
17// !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! z101 ????????????????????????????
18// ??????????????????????????????????????????????????
19Name(z101, 101)
20
21Method(m600,, Serialized)
22{
23	Name(ts, "m600")
24	Name(i000, 0xabcd0000)
25	Method(m000, 1)
26	{
27		Store(0x11223344, i000)
28		if (LNotEqual(arg0, 0xabcd0000)) {
29			err(ts, z101, 0x000, 0, 0, arg0, 0xabcd0000)
30		}
31	}
32
33	m000(i000)
34
35	if (LNotEqual(i000, 0x11223344)) {
36		err(ts, z101, 0x001, 0, 0, i000, 0x11223344)
37	}
38}
39
40Method(n006)
41{
42	SRMT("m600")
43	m600()
44}
45
46
47