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

Update file link_maps.vhd

parent 9de7be23
No related branches found
No related tags found
1 merge request!34Add functionality for multiple module types in a single image
Pipeline #5990934 failed
......@@ -5,20 +5,20 @@ use work.dtc_link_maps_func.all;
package dtc_link_maps is
constant cNumberOfFEModules : integer := 3;
constant cNumberOfOutputLinks : integer := 3;
constant cNumberOfFEModules : integer := 4;
constant cNumberOfOutputLinks : integer := 4;
type tDTCInputLinkMap is array(0 to cNumberOfFEModules - 1) of tDTCInputLinkConfig;
constant cDTCInputLinkMap : tDTCInputLinkMap := (
0 => (8, "2S", 5, "CIC2"),
1 => (9, "2S", 5, "CIC2"),
-- 2 => (10, "2S", 5, "CIC2"),
2 => (10, "2S", 5, "CIC2"),
2 => (11, "2S", 5, "CIC2")
);
type tDTCOutputLinkMap is array(0 to cNumberOfOutputLinks - 1) of integer;
constant cDTCOutputLinkMap : tDTCOutputLinkMap := (
16, 17, 18
16, 17, 18, 19
);
end package dtc_link_maps;
......
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