mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 09:43:56 -06:00
target/tricore: Implement CRCN insn
reported in https://gitlab.com/qemu-project/qemu/-/issues/1667 Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Bastian Koppelmann <kbastian@mail.uni-paderborn.de> Message-ID: <20230828112651.522058-3-kbastian@mail.uni-paderborn.de>
This commit is contained in:
parent
d97fa9a00d
commit
3e2a5107c5
6 changed files with 83 additions and 0 deletions
|
@ -9,6 +9,7 @@ CFLAGS = -mtc162 -c -I$(TESTS_PATH)
|
|||
TESTS += test_abs.asm.tst
|
||||
TESTS += test_bmerge.asm.tst
|
||||
TESTS += test_clz.asm.tst
|
||||
TESTS += test_crcn.asm.tst
|
||||
TESTS += test_dextr.asm.tst
|
||||
TESTS += test_dvstep.asm.tst
|
||||
TESTS += test_fadd.asm.tst
|
||||
|
|
9
tests/tcg/tricore/asm/test_crcn.S
Normal file
9
tests/tcg/tricore/asm/test_crcn.S
Normal file
|
@ -0,0 +1,9 @@
|
|||
#include "macros.h"
|
||||
.text
|
||||
.global _start
|
||||
_start:
|
||||
# insn num result rs1 rs2 rs3
|
||||
# | | | | | |
|
||||
TEST_D_DDD(crcn, 1, 0x00002bed, 0x0, 0xa10ddeed, 0x0)
|
||||
|
||||
TEST_PASSFAIL
|
Loading…
Add table
Add a link
Reference in a new issue