FIRRTL 中的定点数表示

Fixed point number representation in FIRRTL

我正在尝试理解定点数在 FIRRTL 中的表示方式。规范示例提到 Fixed<10> 具有 1 位宽度,这是预期的吗?

Specification for the FIRRTL Language Version 0.2.0
Fixed <3><<2>> ; 3-bit width , 2 bits after binary point
Fixed <10>     ; 1-bit width , inferred binary point
Fixed <<-4>>   ; Inferred width , binary point of -4
Fixed.         ; Inferred width and binary point

Fixed<10> 应该是 10 位宽。在我看来,这是规范中的错字。我将对其进行测试并进行 PR。 谢谢