Skip to content

Commit

Permalink
testbench/cic: fix enable signal for freqgen submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
lerwys committed Jul 9, 2020
1 parent 19bd3f7 commit c1928d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hdl/testbench/cic/wb_bpm_swap/bpm_swap/swap_freqgen.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ begin
port map (
clk_i => clk_i,
rst_n_i => rst_n_i,
en_i => en_i,
en_i => '1',
clk_swap_i => clk_swap,
swap_mode_i => swap_mode_i,
swap_o => swap_o,
Expand All @@ -102,7 +102,7 @@ begin
)
port map (
clk_i => clk_i,
en_i => en_i,
en_i => '1',
d_i => deswap,
q_o => deswap_o,
a_i => deswap_delay_i
Expand Down

0 comments on commit c1928d5

Please sign in to comment.