Browse Source

Add test of reads from buffer fields

Isaac Woods 3 years ago
parent
commit
0b67c96509
1 changed files with 4 additions and 0 deletions
  1. 4 0
      tests/buffer_fields.asl

+ 4 - 0
tests/buffer_fields.asl

@@ -16,4 +16,8 @@ DefinitionBlock("buffer_fields.aml", "DSDT", 1, "RSACPI", "BUFFLD", 1) {
 	// Last two bytes should be cleared because of zero-extension of this store
 	// We do this as a buffer store a) to test them b) because `iasl` doesn't support 64-bit integer constants...
 	QWRD = Buffer() { 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d }
+
+	// `Y` should end up as `Integer(0x07060504)` (`Integer(117835012)` in decimal)
+	Name(Y, 4)
+	Y = DWRD
 }