Forum Discussion
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 anyth...
Altera_Forum
Honored Contributor
9 years agoYou're right in that map does report
Warning (10034): Output port "b" at a.v(#) has no driver When I change to reg type as you suggest it gets the same as I would suspect since a declaration assignment to a 'reg' type is not continuous - it's just an initial value. It certainly works on ncsim - I can try lint, DC shell and modelsim to see if anybody else complains. Thanks, sysTom