BSuma
New Contributor
5 years agolocalparam and parameter values in Synthesis report
I am writing a parameterized Verilog module. In the module I calculate some localparam values using the parameter valued passed. Please seed the code below for example. I want to know the values calculated for localparam during synthesis. But I cannot find that information in reports shown in the Quartus Prime software. I am using Quartus Prime Lite edition.
Where can I find that information?
module Counter #(CLOCK_FREQUENCY=25000000,TIME=1000000)(
input Clk,
input Start,
output reg End
);
localparam megs = (CLOCK_FREQUENCY/1000000)*TIME;