DCC_Bit_0 TB
This commit is contained in:
parent
9e78c99990
commit
b85ba604ff
|
@ -25,7 +25,9 @@ begin
|
|||
--MAE
|
||||
process(clk_100MHz, reset)
|
||||
begin
|
||||
if reset = '1' then fs <= idle;
|
||||
if reset = '1' then
|
||||
fs <= idle;
|
||||
|
||||
elsif rising_edge(clk_100MHz) then
|
||||
|
||||
if cs = idle then
|
||||
|
@ -42,15 +44,17 @@ begin
|
|||
|
||||
out_value <= '0';
|
||||
|
||||
if cpt > 99 then fs <= out_1;
|
||||
if cpt >= 99 then
|
||||
fs <= out_1;
|
||||
end if;
|
||||
|
||||
elsif cs = out_1 then
|
||||
|
||||
out_value <= '1';
|
||||
|
||||
if cpt > 199 then
|
||||
if cpt >= 199 then
|
||||
fs <= idle;
|
||||
out_value <= '0';
|
||||
fin <= '1';
|
||||
inc_cpt <= '0';
|
||||
end if;
|
||||
|
@ -72,6 +76,8 @@ begin
|
|||
|
||||
if inc_cpt = '1' then
|
||||
cpt <= cpt + 1;
|
||||
else
|
||||
cpt <= 0;
|
||||
end if;
|
||||
|
||||
end if;
|
||||
|
|
Loading…
Reference in New Issue