OpenCores
URL https://opencores.org/ocsvn/mips_enhanced/mips_enhanced/trunk

Subversion Repositories mips_enhanced

[/] [mips_enhanced/] [trunk/] [grlib-gpl-1.0.19-b3188/] [lib/] [grlib/] [amba/] [defmst.vhd] - Blame information for rev 2

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 dimamali
------------------------------------------------------------------------------
2
--  This file is a part of the GRLIB VHDL IP LIBRARY
3
--  Copyright (C) 2003, Gaisler Research
4
--
5
--  This program is free software; you can redistribute it and/or modify
6
--  it under the terms of the GNU General Public License as published by
7
--  the Free Software Foundation; either version 2 of the License, or
8
--  (at your option) any later version.
9
--
10
--  This program is distributed in the hope that it will be useful,
11
--  but WITHOUT ANY WARRANTY; without even the implied warranty of
12
--  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
--  GNU General Public License for more details.
14
--
15
--  You should have received a copy of the GNU General Public License
16
--  along with this program; if not, write to the Free Software
17
--  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA 
18
----------------------------------------------------------------------------   
19
-- Entity:      defmst
20
-- File:        defmst.vhd
21
-- Author:      Edvin Catovic, Gaisler Research
22
-- Description: Default AHB master
23
------------------------------------------------------------------------------ 
24
 
25
 
26
library IEEE;
27
use IEEE.std_logic_1164.all;
28
library grlib;
29
use grlib.stdlib.all;
30
use grlib.amba.all;
31
 
32
entity ahbdefmst is
33
  generic ( hindex : integer range 0 to NAHBMST-1 := 0);
34
  port ( ahbmo  : out ahb_mst_out_type);
35
end;
36
 
37
 
38
architecture rtl of ahbdefmst is
39
begin
40
 
41
  ahbmo.hbusreq <= '0';
42
  ahbmo.hlock   <= '0';
43
  ahbmo.htrans  <= HTRANS_IDLE;
44
  ahbmo.haddr   <= (others => '0');
45
  ahbmo.hwrite  <= '0';
46
  ahbmo.hsize   <= (others => '0');
47
  ahbmo.hburst  <= (others => '0');
48
  ahbmo.hprot   <= (others => '0');
49
  ahbmo.hwdata  <= (others => '0');
50
  ahbmo.hirq    <= (others => '0');
51
  ahbmo.hconfig <= (others => (others => '0'));
52
  ahbmo.hindex  <= hindex;
53
 
54
end;

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.