I need an unsigned fixed point data type for a design I am working on. I had a look at the class in question and it seems as though it might be possible to have the class take a generic for the inner data type. However, it seems as though the class uses the AsSInt function. I didn't see any untyped versions of this function.
Please note that I am relatively new to Chisel and Scala, so I might have missed something important.
Do you think it would be feasible to parameterize the FixedPoint class to be either signed or unsigned? Or perhaps there is already a workaround to this issue?
I need an unsigned fixed point data type for a design I am working on. I had a look at the class in question and it seems as though it might be possible to have the class take a generic for the inner data type. However, it seems as though the class uses the
AsSIntfunction. I didn't see any untyped versions of this function.Please note that I am relatively new to Chisel and Scala, so I might have missed something important.
Do you think it would be feasible to parameterize the FixedPoint class to be either signed or unsigned? Or perhaps there is already a workaround to this issue?