fa581531ff
DREG_RS2 and DREG_CALC_RESULT were mapped to the same register which would not trigger https://gitlab.com/qemu-project/qemu/-/issues/653. So let's make each register unique. Signed-off-by: Bastian Koppelmann <kbastian@mail.uni-paderborn.de> Message-Id: <20230202120432.1268-5-kbastian@mail.uni-paderborn.de> Signed-off-by: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
29 lines
550 B
Makefile
29 lines
550 B
Makefile
TESTS_PATH = $(SRC_PATH)/tests/tcg/tricore
|
|
|
|
LDFLAGS = -T$(TESTS_PATH)/link.ld
|
|
ASFLAGS =
|
|
|
|
TESTS += test_abs.tst
|
|
TESTS += test_bmerge.tst
|
|
TESTS += test_clz.tst
|
|
TESTS += test_dvstep.tst
|
|
TESTS += test_fadd.tst
|
|
TESTS += test_fmul.tst
|
|
TESTS += test_ftoi.tst
|
|
TESTS += test_imask.tst
|
|
TESTS += test_insert.tst
|
|
TESTS += test_madd.tst
|
|
TESTS += test_msub.tst
|
|
TESTS += test_muls.tst
|
|
|
|
QEMU_OPTS += -M tricore_testboard -nographic -kernel
|
|
|
|
%.pS: $(TESTS_PATH)/%.S
|
|
$(HOST_CC) -E -o $@ $<
|
|
|
|
%.o: %.pS
|
|
$(AS) $(ASFLAGS) -o $@ $<
|
|
|
|
%.tst: %.o
|
|
$(LD) $(LDFLAGS) $< -o $@
|