Aleksandar Kondić
Aleksandar Kondić
Hi. My colleagues and I also have an interest in FixedPoint as we use it as a dependency in our designs. I'm also interested in doing development work to ensure...
Hi. I gave it a shot at implementing a FixedPoint library. The goal was to replicate the existing FixedPoint API as faithfully as possible so existing code that relied on...
Thanks, @jackkoenig. There is one more tiny limitation which I forgot about, and that is the inability to access the `stringAccessor` method when implementing the `toString` method. I needed this...
I agree with @jurevreca12 that having unsigned fixed-points would be convenient. It also shouldn't be hard to implement them, now that the signed version is more or less fleshed out....
Here is how it's defined in Chisel 3.6: https://github.com/chipsalliance/chisel/blob/3.6-release/core/src/main/scala/chisel3/reflect/DataMirror.scala#L177 The method takes a generic type `T`, but the method's argument is not of type `T`, but rather `Data`. So, from...