Integrate uACPI

This commit is contained in:
2025-08-17 18:37:57 +02:00
parent 069870cd0d
commit 92ccd189e7
166 changed files with 42104 additions and 33 deletions

View File

@ -0,0 +1,25 @@
// Name: ArgX non-reference is rebindable
// Expect: str => MyString
DefinitionBlock ("", "DSDT", 2, "uTEST", "TESTTABL", 0xF0F0F0F0)
{
Method (TES0, 1, NotSerialized)
{
CopyObject("Hello World", Arg0)
Debug = Arg0
}
Method (TES1, 1, NotSerialized)
{
Arg0 = 0x123
Debug = Arg0
}
Method (MAIN, 0, NotSerialized)
{
Local0 = "MyString"
TES0(Local0)
TES1(Local0)
Return(Local0)
}
}