Chisel BugList

Chisel BugList

  • [ ] BitPat length bugs
    BitPat.pare("b1100_0000") = (192,255,9) 实际8bit,返回9bit
    BitPat.pare("b11000000") = (192,255,8)

    1
    2
    3
    35:     (bits, mask, x.length - 1) 
    fix 剔除字符'_' 后统计长度
    35: (bits, mask, x.filter(_!='_').length - 1)
  • [ ] bug2

评论