Altera_Forum
Honored Contributor
11 years agoSignalTap II version 13.0.1 Status Flags do not get set.
I have a state machine. The counters work but the status flags do not. Ex. code below.
if (condition1) begin set f1; goto ST2; end else begin reset c1; goto ST1; end if (condition2) begin set f2; goto ST3; end else goto ST2; if (c1==2) begin trigger; goto ST1; end else if (condition3) begin increment c1; goto ST3; end Neither will be get set to a 1. Always 0. Anyone know why the flags don't get set? Also I found that one does not have to reset the counter. Simply by hitting the Run Analysis button seems to reset everything.