mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 02:03:56 -06:00
target/tricore: Implement FTOU insn
Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Bastian Koppelmann <kbastian@mail.uni-paderborn.de> Message-ID: <20230828112651.522058-5-kbastian@mail.uni-paderborn.de>
This commit is contained in:
parent
ce64babdf6
commit
2bdbe35632
5 changed files with 49 additions and 0 deletions
|
@ -6269,6 +6269,9 @@ static void decode_rr_divide(DisasContext *ctx)
|
|||
case OPC2_32_RR_ITOF:
|
||||
gen_helper_itof(cpu_gpr_d[r3], cpu_env, cpu_gpr_d[r1]);
|
||||
break;
|
||||
case OPC2_32_RR_FTOU:
|
||||
gen_helper_ftou(cpu_gpr_d[r3], cpu_env, cpu_gpr_d[r1]);
|
||||
break;
|
||||
case OPC2_32_RR_FTOUZ:
|
||||
gen_helper_ftouz(cpu_gpr_d[r3], cpu_env, cpu_gpr_d[r1]);
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue