A
Aiken
Guest
if there is a counter counting from FF to 00, and input A and B.
internal have a register
if(A= '1')then
register <= '0';
elsif(B = '1' and counter >0) then
register <= '1';
end if;
the above code, if I change to use != 0, then any difference in
- Synthesis netlist
- Speed or area
internal have a register
if(A= '1')then
register <= '0';
elsif(B = '1' and counter >0) then
register <= '1';
end if;
the above code, if I change to use != 0, then any difference in
- Synthesis netlist
- Speed or area