-
Notifications
You must be signed in to change notification settings - Fork 0
/
mul32const.vht
54 lines (47 loc) · 2.11 KB
/
mul32const.vht
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
-- Copyright (C) 1991-2013 Altera Corporation
-- Your use of Altera Corporation's design tools, logic functions
-- and other software and tools, and its AMPP 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 Altera Program License
-- Subscription Agreement, Altera MegaCore Function License
-- Agreement, or other applicable license agreement, including,
-- without limitation, that your use is for the sole purpose of
-- programming logic devices manufactured by Altera and sold by
-- Altera or its authorized distributors. Please refer to the
-- applicable agreement for further details.
-- ***************************************************************************
-- This file contains a Vhdl test bench template that is freely editable to
-- suit user's needs .Comments are provided in each section to help the user
-- fill out necessary details.
-- ***************************************************************************
-- Generated on "05/01/2015 12:51:18"
-- Vhdl Test Bench template for design : mul32const
--
-- Simulation tool : ModelSim-Altera (VHDL)
--
LIBRARY ieee;
USE ieee.std_logic_1164.all;
ENTITY mul32const_vhd_tst IS
END mul32const_vhd_tst;
ARCHITECTURE mul32const_arch OF mul32const_vhd_tst IS
-- constants
-- signals
SIGNAL in1 : STD_LOGIC_VECTOR(31 DOWNTO 0);
SIGNAL out1 : STD_LOGIC_VECTOR(34 DOWNTO 0);
COMPONENT mul32const
PORT (
in1 : IN STD_LOGIC_VECTOR(31 DOWNTO 0);
out1 : OUT STD_LOGIC_VECTOR(34 DOWNTO 0)
);
END COMPONENT;
BEGIN
i1 : mul32const
PORT MAP (
-- list connections between master ports and signals
in1 => in1,
out1 => out1
);
in1 <= "11111111111111111111111111111110";
END mul32const_arch;