D
Daniel
Guest
Hello,
I'm newer in VHDL and always had this question:
which practice is best from these two:
a)
clk1 <= '1' when (counter32b = PERIOD_1) else '0',
clk2 <= '1' when (counter32b = PERIOD_2) else '0',
clk3 <= '1' when (counter32b = PERIOD_3) else '0',
b)
process(clk)
begin
I'm newer in VHDL and always had this question:
which practice is best from these two:
a)
clk1 <= '1' when (counter32b = PERIOD_1) else '0',
clk2 <= '1' when (counter32b = PERIOD_2) else '0',
clk3 <= '1' when (counter32b = PERIOD_3) else '0',
b)
process(clk)
begin