Skip to content

Commit

Permalink
GearboxTb bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ruck314 committed Nov 12, 2018
1 parent 2e7ad6f commit 5fa459d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions base/general/tb/GearboxTb.vhd
Expand Up @@ -88,8 +88,8 @@ begin
U_Gearbox_0 : entity work.Gearbox
generic map (
TPD_G => TPD_G,
INPUT_WIDTH_G => INPUT_WIDTH_G,
OUTPUT_WIDTH_G => OUTPUT_WIDTH_G)
SLAVE_WIDTH_G => INPUT_WIDTH_G,
MASTER_WIDTH_G => OUTPUT_WIDTH_G)
port map (
clk => clk32, -- [in]
rst => rst32, -- [in]
Expand All @@ -104,8 +104,8 @@ begin
U_Gearbox_1 : entity work.Gearbox
generic map (
TPD_G => TPD_G,
INPUT_WIDTH_G => OUTPUT_WIDTH_G,
OUTPUT_WIDTH_G => INPUT_WIDTH_G)
SLAVE_WIDTH_G => OUTPUT_WIDTH_G,
MASTER_WIDTH_G => INPUT_WIDTH_G)
port map (
clk => clk32, -- [in]
rst => rst32, -- [in]
Expand Down

0 comments on commit 5fa459d

Please sign in to comment.