You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
where in and out are global wires - then, if some_func is selected for having IO registers added to meet timing - the design will break - will get a VHDL syntax error and synth faills.
Missing logic for registering (non volatile) global wires.
Work around for now with ex. #pragma FUNC_NO_ADD_IO_REGS some_func to stop func from getting these broken IO regs added...
The text was updated successfully, but these errors were encountered:
Generally also want to make sure that the reasoning behind how reads and writes to globals behave around pipelineable logic makes sense ... read in first stage, written from first available stage? what about writing from last stage of pipeline always?
if have ex.
where
in
andout
are global wires - then, ifsome_func
is selected for having IO registers added to meet timing - the design will break - will get a VHDL syntax error and synth faills.Missing logic for registering (non volatile) global wires.
Work around for now with ex.
#pragma FUNC_NO_ADD_IO_REGS some_func
to stop func from getting these broken IO regs added...The text was updated successfully, but these errors were encountered: