target: e2k: Add psubd instr.

This commit is contained in:
Denis Drakhnia 2020-12-14 17:51:04 +02:00 committed by Alibek Omarov
parent 28fb8b3363
commit 8a29c4873a
1 changed files with 7 additions and 0 deletions

View File

@ -2208,6 +2208,13 @@ static void execute_ext_01(DisasContext *ctx, Instr *instr)
return;
}
break;
case 0x17:
if (is_chan_03(chan)) {
/* psubd */
gen_alopf1_i64(ctx, chan, tcg_gen_sub_i64);
return;
}
break;
case 0x18:
if (is_chan_03(chan)) {
/* pcmpeqb */