diff options
author | Max Filippov <jcmvbkbc@gmail.com> | 2017-10-31 16:17:43 -0700 |
---|---|---|
committer | Max Filippov <jcmvbkbc@gmail.com> | 2018-01-09 09:55:39 -0800 |
commit | 5a6539e627faf9251e1db78238b9f9b870610518 (patch) | |
tree | cf1d5f6c9ff660be906c294b9f44596c4b6c2320 /disas/Makefile.objs | |
parent | c5ac936e5e8356cf6bba8e39519a273ab0fc6fed (diff) |
target/xtensa: implement disassembler
Add disas/xtensa.c and use libisa for instruction decoding/opcode name
lookup.
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Diffstat (limited to 'disas/Makefile.objs')
-rw-r--r-- | disas/Makefile.objs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/disas/Makefile.objs b/disas/Makefile.objs index 194648fb1a..53556f8f5a 100644 --- a/disas/Makefile.objs +++ b/disas/Makefile.objs @@ -21,6 +21,7 @@ common-obj-$(CONFIG_S390_DIS) += s390.o common-obj-$(CONFIG_SH4_DIS) += sh4.o common-obj-$(CONFIG_SPARC_DIS) += sparc.o common-obj-$(CONFIG_LM32_DIS) += lm32.o +common-obj-$(CONFIG_XTENSA_DIS) += xtensa.o # TODO: As long as the TCG interpreter and its generated code depend # on the QEMU target, we cannot compile the disassembler here. |