Forum Discussion
Altera_Forum
Honored Contributor
15 years agoI now understand the difference between fixed and floating point well. So to use the fixed point arithmetic with Verilog, is there no library support like in VHDL? Also consider the following:
reg [7:0] a; reg [7:0] b; reg [15:0] c; c<=a*b; c<=a/b; c<=a+b; c<=a-b; Would the following expressions be valid for +,-,/,* operations in fixed point arithmetic? Thanks for the pointers.