Altera_Forum
Honored Contributor
15 years agoQuartus doesn't support Standard Verilog ?! (needs begin-end)
Hi,
I get an error when trying to compile the following code: genvar ii; generate for (ii=1; ii<30; ii=ii+1) assign x[ii] = y[ii] & ~(|(y[ii-1:0])); endgenerate the errors: near text "assign"; expecting "begin" this block requires a name the thing is, that it doesn't. this is a code that was simulated in modelsim and actually is already running on ASIC silicon, so, am I missing something ? I have thousands of blocks like this in the design, and changing an operational code is not possible. so what can I do ? Raanan