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

Subversion Repositories w11

[/] [w11/] [tags/] [w11a_V0.74/] [rtl/] [vlib/] [rbus/] [rb_sel.vhd] - Diff between revs 29 and 36

Go to most recent revision | Show entire file | Details | Blame | View Log

Rev 29 Rev 36
Line 1... Line 1...
-- $Id: rb_sel.vhd 641 2015-02-01 22:12:15Z mueller $
-- $Id: rb_sel.vhd 758 2016-04-02 18:01:39Z mueller $
--
--
-- Copyright 2010-2014 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
-- Copyright 2010-2016 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
--
--
-- This program is free software; you may redistribute and/or modify it under
-- This program is free software; you may redistribute and/or modify it under
-- the terms of the GNU General Public License as published by the Free
-- the terms of the GNU General Public License as published by the Free
-- Software Foundation, either version 2, or at your option any later version.
-- Software Foundation, either version 2, or at your option any later version.
--
--
Line 16... Line 16...
-- Description:    rbus: address select logic
-- Description:    rbus: address select logic
--
--
-- Dependencies:   -
-- Dependencies:   -
-- Test bench:     -
-- Test bench:     -
-- Target Devices: generic
-- Target Devices: generic
-- Tool versions:  ise 12.1-14.7; viv 2014.4; ghdl 0.29-0.31
-- Tool versions:  ise 12.1-14.7; viv 2014.4-2015.4; ghdl 0.29-0.33
--
--
-- Revision History: 
-- Revision History: 
-- Date         Rev Version  Comment
-- Date         Rev Version  Comment
 
-- 2016-04-02   758   4.1    streamline code
-- 2014-08-15   583   4.0    rb_mreq addr now 16 bit
-- 2014-08-15   583   4.0    rb_mreq addr now 16 bit
-- 2010-12-26   349   1.0    Initial version (cloned from ibus/ib_sel)
-- 2010-12-26   349   1.0    Initial version (cloned from ibus/ib_sel)
------------------------------------------------------------------------------
------------------------------------------------------------------------------
 
 
library ieee;
library ieee;
Line 51... Line 52...
 
 
  assert SAWIDTH<=15                    -- at most 32k word devices
  assert SAWIDTH<=15                    -- at most 32k word devices
    report "assert(SAWIDTH<=15)" severity failure;
    report "assert(SAWIDTH<=15)" severity failure;
 
 
  proc_regs: process (CLK)
  proc_regs: process (CLK)
    variable isel : slbit := '0';
 
  begin
  begin
    if rising_edge(CLK) then
    if rising_edge(CLK) then
      isel := '0';
 
      if RB_MREQ.aval='1' and
      if RB_MREQ.aval='1' and
        RB_MREQ.addr(15 downto SAWIDTH)=RB_ADDR(15 downto SAWIDTH) then
        RB_MREQ.addr(15 downto SAWIDTH)=RB_ADDR(15 downto SAWIDTH) then
        isel := '1';
        R_SEL <= '1';
 
      else
 
        R_SEL <= '0';
      end if;
      end if;
      R_SEL <= isel;
 
    end if;
    end if;
  end process proc_regs;
  end process proc_regs;
 
 
  SEL <= R_SEL;
  SEL <= R_SEL;
 
 

powered by: WebSVN 2.1.0

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