浏览代码

Add test for DefWhile

Isaac Woods 3 年之前
父节点
当前提交
06409b360e
共有 1 个文件被更改,包括 6 次插入0 次删除
  1. 6 0
      tests/while.asl

+ 6 - 0
tests/while.asl

@@ -0,0 +1,6 @@
+DefinitionBlock("while.aml", "DSDT", 1, "RSACPI", "WHILE", 1) {
+	Name(X, 0)
+	While (X < 5) {
+		X += 1
+	}
+}