git-svn-id: http://moon:8086/svn/vhdl/trunk@1417 cc03376c-175c-47c8-b038-4cd826a8556b
63 lines
1.3 KiB
VHDL
63 lines
1.3 KiB
VHDL
----------------------------------------------------------------------------------
|
|
-- Company:
|
|
-- Engineer:
|
|
--
|
|
-- Create Date: 14:01:32 07/10/2006
|
|
-- Design Name:
|
|
-- Module Name: fix_top - Behavioral
|
|
-- Project Name:
|
|
-- Target Devices:
|
|
-- Tool versions:
|
|
-- Description:
|
|
--
|
|
-- Dependencies:
|
|
--
|
|
-- Revision:
|
|
-- Revision 0.01 - File Created
|
|
-- Additional Comments:
|
|
--
|
|
----------------------------------------------------------------------------------
|
|
library IEEE;
|
|
use IEEE.STD_LOGIC_1164.ALL;
|
|
|
|
package my_pkg is
|
|
type my_t is array (integer range <>) of std_logic;
|
|
end package;
|
|
|
|
library IEEE;
|
|
use IEEE.STD_LOGIC_1164.ALL;
|
|
use IEEE.STD_LOGIC_ARITH.ALL;
|
|
use IEEE.STD_LOGIC_UNSIGNED.ALL;
|
|
|
|
use work.my_pkg.all;
|
|
|
|
entity top is
|
|
Port ( rst : in STD_LOGIC;
|
|
clk : in STD_LOGIC;
|
|
din : in my_t (0 downto -15);
|
|
dout : out my_t (0 downto -15));
|
|
|
|
end top;
|
|
|
|
architecture Behavioral of top is
|
|
signal sig1, sig2 : my_t (0 downto -15) := (others => '0');
|
|
|
|
begin
|
|
|
|
process(clk, rst, din)
|
|
|
|
begin
|
|
if (rst = '1') then
|
|
sig1 <= (others => '0');
|
|
sig2 <= (others => '0');
|
|
-- dout <= (others => '0'); -- Commented out due to HDL Advisior's advice
|
|
elsif rising_edge(clk) then
|
|
dout <= sig1;
|
|
sig1 <= din;
|
|
end if;
|
|
|
|
end process;
|
|
|
|
end Behavioral;
|
|
|