Chisel 常见问题

  • Q1:

  • Q1:

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

Chisel版本

如何查看当前使用的chisel版本

一般情况下chisel的版本会在build.sbt里显式定义,但有时候像jupter-notebook里并不能看到版本号
这种情况下有一个方法可以得到版本号
即生成的firrtl文件头会打印版本信息