Files
my-os-project2/kernel/hal/x86_64/uACPI/tests/test-cases/local0_string.asl
2025-08-17 18:37:57 +02:00

12 lines
249 B
Plaintext

// Name: Return String Using Local0
// Expect: str => hello world
DefinitionBlock ("", "DSDT", 2, "uTEST", "TESTTABL", 0xF0F0F0F0)
{
Method (MAIN, 0, NotSerialized)
{
Debug = (Local0 = "hello world")
Return (Local0)
}
}