V
valentin tihomirov
Guest
Do synthesis tools support the feature? That is, replacing the convential
counters with LFSRs? In many cases the values of counters are used
exclusevely internally. For example
if RST = '1' or CNT = MAX then
CNT = INIT;
else
CNT = INC(CNT);
end if;
MAX and INIT are constants. There is no difference which counter type to
use.
counters with LFSRs? In many cases the values of counters are used
exclusevely internally. For example
if RST = '1' or CNT = MAX then
CNT = INIT;
else
CNT = INC(CNT);
end if;
MAX and INIT are constants. There is no difference which counter type to
use.