On 8/17/20 1:49 AM, frank.ch...@sifive.com wrote: > +static uint8_t vext_get_emul(DisasContext *s, uint8_t eew) > +{ > + int8_t emul = ctzl(eew) - (s->sew + 3) + s->lmul; > + return emul < 0 ? 0 : emul; > +}
Same comment about EEW being encoded as MemOp to match SEW. r~