Skip to content

Commit ccfc06f

Browse files
committed
UART: Rename all testbench files
1 parent 4510a11 commit ccfc06f

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

example/uart_loopback_testbench.vhd renamed to example/uart_loopback_tb.vhd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ library IEEE;
2727
use IEEE.STD_LOGIC_1164.ALL;
2828
use IEEE.NUMERIC_STD.ALL;
2929

30-
entity UART_LOOPBACK_TESTBENCH is
31-
end UART_LOOPBACK_TESTBENCH;
30+
entity UART_LOOPBACK_TB is
31+
end UART_LOOPBACK_TB;
3232

33-
architecture FULL of UART_LOOPBACK_TESTBENCH is
33+
architecture FULL of UART_LOOPBACK_TB is
3434

3535
signal CLK : std_logic := '0';
3636
signal RST_N : std_logic := '0';

source/comp/uart_fifo_testbench.vhd renamed to source/comp/uart_fifo_tb.vhd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ library IEEE;
2727
use IEEE.STD_LOGIC_1164.ALL;
2828
use IEEE.NUMERIC_STD.ALL;
2929

30-
entity UART_FIFO_TESTBENCH is
31-
end UART_FIFO_TESTBENCH;
30+
entity UART_FIFO_TB is
31+
end UART_FIFO_TB;
3232

33-
architecture FULL of UART_FIFO_TESTBENCH is
33+
architecture FULL of UART_FIFO_TB is
3434

3535
signal CLK : std_logic := '0';
3636
signal RST : std_logic := '0';

source/uart_testbench.vhd renamed to source/uart_tb.vhd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ library IEEE;
2727
use IEEE.STD_LOGIC_1164.ALL;
2828
use IEEE.NUMERIC_STD.ALL;
2929

30-
entity UART_TESTBENCH is
31-
end UART_TESTBENCH;
30+
entity UART_TB is
31+
end UART_TB;
3232

33-
architecture FULL of UART_TESTBENCH is
33+
architecture FULL of UART_TB is
3434

3535
signal CLK : std_logic := '0';
3636
signal RST : std_logic := '0';

0 commit comments

Comments
 (0)