-- Copyright (C) 2020 Intel Corporation. All rights reserved. -- Your use of Intel Corporation's design tools, logic functions -- and other software and tools, and any partner logic -- functions, and any output files from any of the foregoing -- (including device programming or simulation files), and any -- associated documentation or information are expressly subject -- to the terms and conditions of the Intel Program License -- Subscription Agreement, the Intel Quartus Prime License Agreement, -- the Intel FPGA IP License Agreement, or other applicable license -- agreement, including, without limitation, that your use is for -- the sole purpose of programming logic devices manufactured by -- Intel and sold by Intel or its authorized distributors. Please -- refer to the applicable agreement for further details, at -- https://fpgasoftware.intel.com/eula. -- ***************************************************************************** -- This file contains a Vhdl test bench with test vectors .The test vectors -- are exported from a vector file in the Quartus Waveform Editor and apply to -- the top level entity of the current Quartus project .The user can use this -- testbench to simulate his design using a third-party simulation tool . -- ***************************************************************************** -- Generated on "03/08/2023 11:38:17" -- Vhdl Test Bench(with test vectors) for design : AdderDemo -- -- Simulation tool : 3rd Party -- LIBRARY ieee; USE ieee.std_logic_1164.all; ENTITY AdderDemo_vhd_vec_tst IS END AdderDemo_vhd_vec_tst; ARCHITECTURE AdderDemo_arch OF AdderDemo_vhd_vec_tst IS -- constants -- signals SIGNAL LEDR : STD_LOGIC_VECTOR(4 DOWNTO 0); SIGNAL SW : STD_LOGIC_VECTOR(7 DOWNTO 0); COMPONENT AdderDemo PORT ( LEDR : OUT STD_LOGIC_VECTOR(4 DOWNTO 0); SW : IN STD_LOGIC_VECTOR(7 DOWNTO 0) ); END COMPONENT; BEGIN i1 : AdderDemo PORT MAP ( -- list connections between master ports and signals LEDR => LEDR, SW => SW ); END AdderDemo_arch;