summaryrefslogtreecommitdiff
path: root/testsuite/vests/vhdl-93/ashenden/compliant/ch_15_dlxtst-b.vhd
diff options
context:
space:
mode:
authorTristan Gingold2013-12-20 04:48:54 +0100
committerTristan Gingold2013-12-20 04:48:54 +0100
commit6c3f709174e8e4d5411f851cedb7d84c38d3b04a (patch)
treebd12c79c71a2ee65899a9ade9919ec2045addef8 /testsuite/vests/vhdl-93/ashenden/compliant/ch_15_dlxtst-b.vhd
parentbd4aff0f670351c0652cf24e9b04361dc0e3a01c (diff)
downloadghdl-6c3f709174e8e4d5411f851cedb7d84c38d3b04a.tar.gz
ghdl-6c3f709174e8e4d5411f851cedb7d84c38d3b04a.tar.bz2
ghdl-6c3f709174e8e4d5411f851cedb7d84c38d3b04a.zip
Import vests testsuite
Diffstat (limited to 'testsuite/vests/vhdl-93/ashenden/compliant/ch_15_dlxtst-b.vhd')
-rw-r--r--testsuite/vests/vhdl-93/ashenden/compliant/ch_15_dlxtst-b.vhd87
1 files changed, 87 insertions, 0 deletions
diff --git a/testsuite/vests/vhdl-93/ashenden/compliant/ch_15_dlxtst-b.vhd b/testsuite/vests/vhdl-93/ashenden/compliant/ch_15_dlxtst-b.vhd
new file mode 100644
index 0000000..65e91af
--- /dev/null
+++ b/testsuite/vests/vhdl-93/ashenden/compliant/ch_15_dlxtst-b.vhd
@@ -0,0 +1,87 @@
+
+-- Copyright (C) 1996 Morgan Kaufmann Publishers, Inc
+
+-- This file is part of VESTs (Vhdl tESTs).
+
+-- VESTs is free software; you can redistribute it and/or modify it
+-- under the terms of the GNU General Public License as published by the
+-- Free Software Foundation; either version 2 of the License, or (at
+-- your option) any later version.
+
+-- VESTs is distributed in the hope that it will be useful, but WITHOUT
+-- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+-- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+-- for more details.
+
+-- You should have received a copy of the GNU General Public License
+-- along with VESTs; if not, write to the Free Software Foundation,
+-- Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
+-- ---------------------------------------------------------------------
+--
+-- $Id: ch_15_dlxtst-b.vhd,v 1.3 2001-11-03 23:19:37 paw Exp $
+-- $Revision: 1.3 $
+--
+-- ---------------------------------------------------------------------
+
+library ieee;
+use ieee.std_logic_1164.all;
+
+architecture bench of dlx_test is
+
+ use work.dlx_types.all;
+
+ component clock_gen is
+ port ( phi1, phi2 : out std_logic;
+ reset : out std_logic );
+ end component clock_gen;
+
+ component memory is
+ port ( phi1, phi2 : in std_logic;
+ a : in dlx_address;
+ d : inout dlx_word;
+ width : in dlx_mem_width;
+ write_enable : in std_logic;
+ burst : in std_logic := '0';
+ mem_enable : in std_logic;
+ ready : out std_logic );
+ end component memory;
+
+ component dlx is
+ port ( phi1, phi2 : in std_logic;
+ reset : in std_logic;
+ halt : out std_logic;
+ a : out dlx_address;
+ d : inout dlx_word;
+ width : out dlx_mem_width;
+ write_enable : out std_logic;
+ ifetch : out std_logic;
+ mem_enable : out std_logic;
+ ready : in std_logic );
+ end component dlx;
+
+ signal phi1, phi2, reset : std_logic;
+ signal a : dlx_address;
+ signal d : dlx_word;
+ signal halt : std_logic;
+ signal width : dlx_mem_width;
+ signal write_enable, mem_enable, ifetch, ready : std_logic;
+
+begin
+
+ cg : component clock_gen
+ port map ( phi1 => phi1, phi2 => phi2, reset => reset );
+
+ mem : component memory
+ port map ( phi1 => phi1, phi2 => phi2,
+ a => a, d => d,
+ width => width, write_enable => write_enable, burst => open,
+ mem_enable => mem_enable, ready => ready );
+
+ proc : component dlx
+ port map ( phi1 => phi1, phi2 => phi2, reset => reset, halt => halt,
+ a => a, d => d,
+ width => width, write_enable => write_enable, ifetch => ifetch,
+ mem_enable => mem_enable, ready => ready );
+
+end architecture bench;