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,18 @@
// Name: Modification via LocalX reference implict-casts (string->int64)
// Expect: int => 0x676E6F6C79726576
DefinitionBlock ("", "DSDT", 2, "uTEST", "TESTTABL", 0xF0F0F0F0)
{
Method (TEST, 1, NotSerialized)
{
Local0 = RefOf(Arg0)
Local0 = "verylongstringbiggerthanint"
}
Method (MAIN, 0, NotSerialized)
{
Local0 = 0xDEADC0DEDEADBEEF
TEST(RefOf(Local0))
Return (Local0)
}
}