Forum Discussion
Altera_Forum
Honored Contributor
15 years agoFloat to Fixed Point in FPGA
Hi there. I have DSP code in C with floating point, now I try to convert to FPGA to use fixed point. Can you guys show me how to do it? I did little research document from http://www.vh...
Altera_Forum
Honored Contributor
15 years agoThanks kaz,
Yeah, we would like to move DSP C code to verilog. Most DSP code was written in C (pointers & floating point). I can use SystemVerilog (real) type, so I can see my data in modelsim. But my goal is to verilog only, Can I do it? SystemVerilog: real preamble_p[64]; // Works great Verilog: wire signed [31:0] preamble_p[64]; ???????