Integrate uACPI

This commit is contained in:
2025-12-21 22:24:23 +01:00
parent c3123192d8
commit 8794a61073
167 changed files with 42535 additions and 4 deletions

View File

@@ -0,0 +1,17 @@
// Name: Call-by-value w/ CopyObject() doesn't modify Local
// Expect: str => MyString
DefinitionBlock ("", "DSDT", 2, "uTEST", "TESTTABL", 0xF0F0F0F0)
{
Method (TEST, 1, NotSerialized)
{
CopyObject(0xDEADBEEF, Arg0)
}
Method (MAIN, 0, NotSerialized)
{
Local0 = "MyString"
TEST(Local0)
Return (Local0)
}
}