Browse Source

Add ASL test for externally-defined objects

This doesn't actually appear to emit externals, assuming we're decoding
correctly. I think the compiler is actually manipulating this into a scope
definition, and then assuming the object is correctly loaded. Fine.
Isaac Woods 3 years ago
parent
commit
80caea06e2
2 changed files with 10 additions and 1 deletions
  1. 10 0
      tests/external.asl
  2. 0 1
      tests/power_res.asl

+ 10 - 0
tests/external.asl

@@ -0,0 +1,10 @@
+DefinitionBlock("external.aml", "DSDT", 1, "RSACPI", "EXTRL", 1) {
+	Scope(_SB) {
+		External(FOO, MethodObj, IntObj, {IntObj})
+	}
+
+	Name(X, Zero)
+	Method(BAR) {
+		Store(\_SB.FOO(4), X)
+	}
+}

+ 0 - 1
tests/power_res.asl

@@ -14,4 +14,3 @@ DefinitionBlock("power_res.aml", "DSDT", 1, "RSACPI", "PWRRES", 1) {
 		}
 	}
 }
-