Skip to content
Snippets Groups Projects
Commit d4a911bf authored by Pieter Donker's avatar Pieter Donker
Browse files

RTSD-156: apply vhdl_style_fix, delete space before semicolon

parent 1dc76b73
No related branches found
No related tags found
1 merge request!342RTSD-156: apply vhdl_style_fix, delete space before semicolon
Pipeline #55852 passed
Showing
with 91 additions and 91 deletions
......@@ -76,8 +76,8 @@ architecture tb of tb_lofar2_unb2b_adc_wg is
constant c_pps_period : natural := 1000;
constant c_tb_clk_period : time := 100 ps; -- use fast tb_clk to speed up M&C
constant c_cable_delay : time := 12 ns
;
constant c_cable_delay : time := 12 ns;
constant c_sample_freq : natural := c_unb2b_board_ext_clk_freq_200M / 10**6; -- 200 MSps
constant c_sample_period : time := (10**6 / c_sample_freq) * 1 ps;
......
......@@ -38,7 +38,7 @@
--
--
library IEEE, common_lib, unb2_board_lib, ;
library IEEE, common_lib, unb2_board_lib;
use IEEE.std_logic_1164.all;
use IEEE.numeric_std.all;
use common_lib.common_pkg.all;
......
......@@ -357,7 +357,7 @@ begin
v := c_reorder_transpose_rst;
end if;
-- Synchronous reset
if rst = '1' THEN
if rst = '1' then
v := c_reorder_transpose_rst;
end if;
d_transpose <= v;
......@@ -379,7 +379,7 @@ begin
v := c_reorder_transpose_rst;
end if;
-- Synchronous reset
if rst = '1' THEN
if rst = '1' then
v := c_reorder_transpose_rst;
end if;
d_undo_transpose <= v;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment