Altera_Forum
Honored Contributor
9 years agocontinuous assignment on port list fails
Hello,
Had a module with an output tied high, e.g:module a( output wire b = 1'b1); ... Quartus 16.1 synthesizes to 1'b0. Is this to be expected by the LRM? I couldn't find anything explicit on the publicly available SV LRMs. Of course, when I re-code it works as expected:module a( output wire b); assign b = 1'b1; ... Thanks, sysTom