2012-07-20 15:50:39 +08:00
|
|
|
obj-$(CONFIG_SOFTMMU) += machine.o
|
2018-05-23 08:14:46 -07:00
|
|
|
obj-y += cpu.o exception.o interrupt.o mmu.o translate.o disas.o
|
2015-04-07 13:31:50 -07:00
|
|
|
obj-y += exception_helper.o fpu_helper.o \
|
2018-05-22 18:21:21 -07:00
|
|
|
interrupt_helper.o sys_helper.o
|
2013-06-29 04:18:45 +02:00
|
|
|
obj-y += gdbstub.o
|
2018-02-19 12:28:12 -08:00
|
|
|
|
|
|
|
DECODETREE = $(SRC_PATH)/scripts/decodetree.py
|
|
|
|
|
|
|
|
target/openrisc/decode.inc.c: \
|
|
|
|
$(SRC_PATH)/target/openrisc/insns.decode $(DECODETREE)
|
|
|
|
$(call quiet-command,\
|
|
|
|
$(PYTHON) $(DECODETREE) -o $@ $<, "GEN", $(TARGET_DIR)$@)
|
|
|
|
|
|
|
|
target/openrisc/translate.o: target/openrisc/decode.inc.c
|
2018-05-23 08:14:46 -07:00
|
|
|
target/openrisc/disas.o: target/openrisc/decode.inc.c
|