qemu with hax to log dma reads & writes
jcs.org/2018/11/12/vfio
1obj-$(CONFIG_SOFTMMU) += machine.o
2obj-y += cpu.o exception.o interrupt.o mmu.o translate.o disas.o
3obj-y += exception_helper.o fpu_helper.o \
4 interrupt_helper.o sys_helper.o
5obj-y += gdbstub.o
6
7DECODETREE = $(SRC_PATH)/scripts/decodetree.py
8
9target/openrisc/decode.inc.c: \
10 $(SRC_PATH)/target/openrisc/insns.decode $(DECODETREE)
11 $(call quiet-command,\
12 $(PYTHON) $(DECODETREE) -o $@ $<, "GEN", $(TARGET_DIR)$@)
13
14target/openrisc/translate.o: target/openrisc/decode.inc.c
15target/openrisc/disas.o: target/openrisc/decode.inc.c