Sfoglia il codice sorgente

Add test for DefWhile

Isaac Woods 3 anni fa
parent
commit
06409b360e
1 ha cambiato i file con 6 aggiunte e 0 eliminazioni
  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
+	}
+}