📄 tbw.vhd
字号:
-- VHDL Test Bench Created from source file fenpin1.vhd -- 16:23:39 09/20/2008
--
-- Notes:
-- This testbench has been automatically generated using types std_logic and
-- std_logic_vector for the ports of the unit under test. Xilinx recommends
-- that these types always be used for the top-level I/O of a design in order
-- to guarantee that the testbench will bind correctly to the post-implementation
-- simulation model.
--
LIBRARY ieee;
USE ieee.std_logic_1164.ALL;
USE ieee.numeric_std.ALL;
ENTITY fenpin1_tbw_vhd_tb IS
END fenpin1_tbw_vhd_tb;
ARCHITECTURE behavior OF fenpin1_tbw_vhd_tb IS
COMPONENT fenpin1
PORT(
clk : IN std_logic;
clkout1 : OUT std_logic
);
END COMPONENT;
SIGNAL clk : std_logic;
SIGNAL clkout1 : std_logic;
BEGIN
uut: fenpin1 PORT MAP(
clk => clk,
clkout1 => clkout1
);
-- *** Test Bench - User Defined Section ***
tb : PROCESS
BEGIN
wait; -- will wait forever
END PROCESS;
-- *** End Test Bench - User Defined Section ***
END;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -