From 256eb7ee587ce4b0ae8d5b9ce76b746a29897e30 Mon Sep 17 00:00:00 2001 From: Aleksandar Markovic Date: Mon, 3 Feb 2020 16:57:22 +0100 Subject: target/mips: Separate CP0-related helpers into their own file For clarity and easier maintenence, create target/mips/cp0_helper.c, and move all CP0-related content form target/mips/op_helper.c to that file. Signed-off-by: Aleksandar Markovic Reviewed-by: Aleksandar Rikalo Message-Id: <1580745443-24650-2-git-send-email-aleksandar.markovic@rt-rk.com> --- target/mips/Makefile.objs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'target/mips/Makefile.objs') diff --git a/target/mips/Makefile.objs b/target/mips/Makefile.objs index 3448ad5..3ca2bde 100644 --- a/target/mips/Makefile.objs +++ b/target/mips/Makefile.objs @@ -1,5 +1,6 @@ -obj-y += translate.o dsp_helper.o op_helper.o lmi_helper.o helper.o cpu.o -obj-y += gdbstub.o msa_helper.o +obj-y += translate.o cpu.o gdbstub.o helper.o +obj-y += op_helper.o cp0_helper.o +obj-y += dsp_helper.o lmi_helper.o msa_helper.o obj-$(CONFIG_SOFTMMU) += mips-semi.o obj-$(CONFIG_SOFTMMU) += machine.o cp0_timer.o obj-$(CONFIG_KVM) += kvm.o -- cgit v1.1