On 8/9/21 3:10 AM, Daniel Henrique Barboza wrote:
+ TCGv target = tcg_temp_new(); + TCGv bescr = tcg_temp_new(); + + gen_load_spr(target, SPR_EBBRR); + tcg_gen_mov_tl(cpu_nip, target);
You don't need a temporary for target here; just load into cpu_nip directly.
+ ctx->base.is_jmp = DISAS_EXIT;
You ought to be able to use DISAS_CHAIN. r~