在FPGA中,实数和整数变量被综合或不综合。如果它是综合的,如何在varilog中使用这些变量。
发布于 2017-04-20 14:37:56
integer类型是可合成的,但real是不可合成的。real是可以在SystemVerilog中合成的。
integer
real
SystemVerilog
您可以将其用作任何其他信号:integer a = 0;
integer a = 0;
https://stackoverflow.com/questions/43510452
相似问题