Files
mgebyehu.nikhef.nl f88fad6626 temp save on 23-05-2013
2013-05-23 12:48:14 +00:00

70 lines
2.3 KiB
VHDL

--------------------------------------------------------------------------------
--
-- This VHDL file was generated by EASE/HDL 7.4 Revision 8 from HDL Works B.V.
--
-- Ease library : work
-- HDL library : work
-- Host name : ilex
-- User name : mgebyehu
-- Time stamp : Wed May 22 13:03:52 2013
--
-- Designed by :
-- Company :
-- Project info :
--
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- Object : Entity work.DummyMaster
-- Last modified : Thu Mar 28 16:19:51 2013.
--------------------------------------------------------------------------------
library ieee, work, unisim;
use ieee.std_logic_1164.all;
use work.endpoint_pkg.all;
use work.sysc_wbgen2_pkg.all;
use work.wrcore_pkg.all;
use work.genram_pkg.all;
use work.memory_loader_pkg.all;
use work.wishbone_pkg.all;
use work.wr_fabric_pkg.all;
use unisim.VCOMPONENTS.all;
entity DummyMaster is
port(
Master_in : in t_wishbone_master_in;
Master_o : out t_wishbone_master_out);
end entity DummyMaster;
--------------------------------------------------------------------------------
-- Object : Architecture work.DummyMaster.rtl
-- Last modified : Thu Mar 28 16:19:51 2013.
--------------------------------------------------------------------------------
architecture rtl of DummyMaster is
begin
-- master output wishbone signals
master_o.cyc <= '0';
master_o.stb <= '0';
master_o.adr <= (Others => '0');
master_o.sel <= "0000";
master_o.we <= '0';
master_o.dat <= (Others => '0');
-- Master input wishbone signals
-- master_i.ack <= '0';
-- master_i.err <= '0';
-- master_i.rty <= '0';
-- master_i.stall <= '0';
-- master_i.int <= '0';
-- master_i.dat <= (Others => '0');
end architecture rtl ; -- of DummyMaster