Re: [Qemu-devel] [PATCH 18/35] target/mips: Add nanoMIPS branch instructions
On 06/20/2018 05:06 AM, Yongbok Kim wrote: > +if (rt == 0 && imm == 0) { > +/* Unconditional branch */ > +} else if (rt == 0 && imm != 0) { > +/* Treat as NOP */ > +goto out; Given that there is a different unconditional BC opcode, I would expect
[Qemu-devel] [PATCH 18/35] target/mips: Add nanoMIPS branch instructions
Add nanoMIPS branch instructions Signed-off-by: Yongbok Kim --- target/mips/translate.c | 277 1 file changed, 277 insertions(+) diff --git a/target/mips/translate.c b/target/mips/translate.c index 08765a7..948d3d5 100644 --- a/target/mips/transl