summaryrefslogtreecommitdiff
path: root/source/components/disassembler/dmwalk.c
diff options
context:
space:
mode:
authorRobert Moore <Robert.Moore@intel.com>2015-07-24 07:56:38 -0700
committerRobert Moore <Robert.Moore@intel.com>2015-07-24 07:56:38 -0700
commit2ed09bb7619d25f5a5c065c33a8a775a6db3a856 (patch)
tree29615652ab89ed5cf56b938c60c5af08e2f625a1 /source/components/disassembler/dmwalk.c
parent51ab555e60b4a3de3cc4a846e86d0de255be441a (diff)
downloadacpica-2ed09bb7619d25f5a5c065c33a8a775a6db3a856.tar.gz
Disassembler: Update prototype "listing" mode.
This mode emits AML code along with the ASL code. A new global was needed to ensure the listing mode is completely separate from the debugger verbose mode.
Diffstat (limited to 'source/components/disassembler/dmwalk.c')
-rw-r--r--source/components/disassembler/dmwalk.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/components/disassembler/dmwalk.c b/source/components/disassembler/dmwalk.c
index 091c69cc3..a234df8cd 100644
--- a/source/components/disassembler/dmwalk.c
+++ b/source/components/disassembler/dmwalk.c
@@ -487,7 +487,9 @@ AcpiDmDescendingOp (
UINT32 AmlOffset;
- if (AcpiGbl_DbOpt_Verbose && AcpiGbl_PreviousOp)
+ /* Listing support to dump the AML code after the ASL statement */
+
+ if (AcpiGbl_DmOpt_Listing && AcpiGbl_PreviousOp)
{
/* Dump the entire statement in AML byte code */