BoardSsdt.asl 619 B

12345678910111213141516171819202122232425262728293031323334
  1. /** @file
  2. This file contains the Aspire VN7-572G SSDT Table ASL code.
  3. Copyright (c) 2021, Baruch Binyamin Doron
  4. SPDX-License-Identifier: BSD-2-Clause-Patent
  5. **/
  6. DefinitionBlock (
  7. "Board.aml",
  8. "SSDT",
  9. 0x02,
  10. "ACRSKL",
  11. "AcerSKL ",
  12. 0x20141018
  13. )
  14. {
  15. External (\MDBG, MethodObj)
  16. // Debug print helper
  17. Method (DBGH, 1)
  18. {
  19. // If present, print to ACPI debug feature's buffer
  20. If (CondRefOf (\MDBG))
  21. {
  22. \MDBG (Arg0)
  23. }
  24. // Always use "Debug" object for operating system
  25. Debug = Arg0
  26. }
  27. Include ("ec.asl")
  28. Include ("mainboard.asl")
  29. }