Skip to content
Snippets Groups Projects
Commit a141b9af authored by David Gabriel Monk's avatar David Gabriel Monk
Browse files

Update file LinkMonitorInterface.vhd

parent 76102923
No related branches found
No related tags found
No related merge requests found
Pipeline #6113305 failed
...@@ -13,7 +13,9 @@ use work.dtc_data_types.all; ...@@ -13,7 +13,9 @@ use work.dtc_data_types.all;
entity LinkMonitorInterface is entity LinkMonitorInterface is
generic ( generic (
N_LINKS : integer N_LINKS : integer,
INPUT_WIDTH : integer := 10,
BIN_WIDTH : integer := 32
); );
port ( port (
--- Input Ports --- --- Input Ports ---
...@@ -129,9 +131,9 @@ begin ...@@ -129,9 +131,9 @@ begin
LinkMonitorInstance : entity work.LinkMonitor LinkMonitorInstance : entity work.LinkMonitor
--==============================-- --==============================--
generic map ( generic map (
bin_width => 32, bin_width => BIN_WIDTH,
input_width => 10, input_width => INPUT_WIDTH,
data_offset => 9 data_offset => 19 - INPUT_WIDTH
) )
port map ( port map (
--- Input Ports --- --- Input Ports ---
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment