On 11/12/2013 01:13 AM, Claudio Fontana wrote: > +/* C3.2 Branches, exception generating and system instructions */ > +static void disas_b_exc_sys(DisasContext *s, uint32_t insn) > +{ > + switch (extract32(insn, 25, 7)) { > + case 0x0a: case 0x4a: /* Unconditional branch (immediate) */ > + disas_uncond_b_imm(s, insn); > + break;
Bit 25 is "-" for unconditional branch, so this entry should be 0x0a, 0x0b, 0x4a, 0x4b All of the other decodings look good. r~