Skip to content
Snippets Groups Projects
Commit 2109532a authored by Daniel van der Schuur's avatar Daniel van der Schuur
Browse files

-Fixed syntax errors;

-Compiles OK in modelsim.
parent 556cce47
No related branches found
No related tags found
No related merge requests found
...@@ -10,7 +10,7 @@ quartus_copy_files = ...@@ -10,7 +10,7 @@ quartus_copy_files =
quartus/qsys_unb1_correlator.qsys . quartus/qsys_unb1_correlator.qsys .
synth_files = synth_files =
$HDL_BUILD_DIR/quartus/unb1_correlator/qsys_unb1_correlator.vhd $HDL_BUILD_DIR/quartus/unb1_correlator/qsys_unb1_correlator/synthesis/qsys_unb1_correlator.v
src/vhdl/mmm_unb1_correlator.vhd src/vhdl/mmm_unb1_correlator.vhd
src/vhdl/unb1_correlator.vhd src/vhdl/unb1_correlator.vhd
......
...@@ -69,9 +69,6 @@ ARCHITECTURE str OF unb1_correlator IS ...@@ -69,9 +69,6 @@ ARCHITECTURE str OF unb1_correlator IS
-- In simulation we don't need the 1GbE core for MM control, deselect it in c_use_phy based on g_sim -- In simulation we don't need the 1GbE core for MM control, deselect it in c_use_phy based on g_sim
CONSTANT c_use_phy : t_c_unb1_board_use_phy := (sel_a_b(g_sim, 0, 1), 0, 0, 0, 0, 0, 0, 1); CONSTANT c_use_phy : t_c_unb1_board_use_phy := (sel_a_b(g_sim, 0, 1), 0, 0, 0, 0, 0, 0, 1);
CONSTANT c_use_qsys : BOOLEAN := g_design_name="unb1_correlator_qsys";
CONSTANT c_use_sopc : BOOLEAN := NOT c_use_qsys;
-- System -- System
SIGNAL cs_sim : STD_LOGIC; SIGNAL cs_sim : STD_LOGIC;
SIGNAL xo_clk : STD_LOGIC; SIGNAL xo_clk : STD_LOGIC;
...@@ -83,8 +80,6 @@ ARCHITECTURE str OF unb1_correlator IS ...@@ -83,8 +80,6 @@ ARCHITECTURE str OF unb1_correlator IS
SIGNAL st_rst : STD_LOGIC; SIGNAL st_rst : STD_LOGIC;
SIGNAL st_clk : STD_LOGIC; SIGNAL st_clk : STD_LOGIC;
SIGNAL epcs_clk : STD_LOGIC;
-- PIOs -- PIOs
SIGNAL pout_wdi : STD_LOGIC; SIGNAL pout_wdi : STD_LOGIC;
...@@ -166,7 +161,7 @@ BEGIN ...@@ -166,7 +161,7 @@ BEGIN
mm_locked => mm_locked, mm_locked => mm_locked,
mm_rst => mm_rst, mm_rst => mm_rst,
epcs_clk => epcs_clk, epcs_clk => '0',
dp_rst => st_rst, dp_rst => st_rst,
dp_clk => st_clk, dp_clk => st_clk,
...@@ -249,8 +244,6 @@ BEGIN ...@@ -249,8 +244,6 @@ BEGIN
mm_clk => mm_clk, mm_clk => mm_clk,
mm_locked => mm_locked, mm_locked => mm_locked,
epcs_clk => epcs_clk,
-- PIOs -- PIOs
pout_wdi => pout_wdi, pout_wdi => pout_wdi,
......
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