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

Subversion Repositories robust_ahb_matrix

[/] [robust_ahb_matrix/] [trunk/] [src/] [base/] [ahb_matrix_dec.v] - Blame information for rev 10

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 10 eyalhoc
<##//////////////////////////////////////////////////////////////////
2 2 eyalhoc
////                                                             ////
3
////  Author: Eyal Hochberg                                      ////
4
////          eyal@provartec.com                                 ////
5
////                                                             ////
6
////  Downloaded from: http://www.opencores.org                  ////
7
/////////////////////////////////////////////////////////////////////
8
////                                                             ////
9
//// Copyright (C) 2010 Provartec LTD                            ////
10
//// www.provartec.com                                           ////
11
//// info@provartec.com                                          ////
12
////                                                             ////
13
//// This source file may be used and distributed without        ////
14
//// restriction provided that this copyright statement is not   ////
15
//// removed from the file and that any derivative work contains ////
16
//// the original copyright notice and the associated disclaimer.////
17
////                                                             ////
18
//// This source file is free software; you can redistribute it  ////
19
//// and/or modify it under the terms of the GNU Lesser General  ////
20
//// Public License as published by the Free Software Foundation.////
21
////                                                             ////
22
//// This source is distributed in the hope that it will be      ////
23
//// useful, but WITHOUT ANY WARRANTY; without even the implied  ////
24
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR     ////
25
//// PURPOSE.  See the GNU Lesser General Public License for more////
26
//// details. http://www.gnu.org/licenses/lgpl.html              ////
27
////                                                             ////
28 10 eyalhoc
//////////////////////////////////////////////////////////////////##>
29 2 eyalhoc
 
30
OUTFILE PREFIX_dec.v
31
INCLUDE def_ahb_matrix.txt
32
 
33
ITER MX
34
ITER SX
35
 
36
module PREFIX_dec (PORTS);
37
 
38
   input [ADDR_BITS-1:0]                       MMX_HADDR;
39
   output [SLV_BITS-1:0]                       MMX_slv;
40
 
41
 
42
   parameter                                  DEC_MSB =  ADDR_BITS - 1;
43
   parameter                                  DEC_LSB =  ADDR_BITS - SLV_BITS;
44
 
45
   reg [SLV_BITS-1:0]                          MMX_slv;
46
 
47
   LOOP MX
48
     always @(*)
49
       begin
50
          case (MMX_HADDR[DEC_MSB:DEC_LSB])
51
            BIN(SX SLV_BITS) : MMX_slv = 'dSX;
52
 
53
            default : MMX_slv = 'dSERR;
54
          endcase
55
       end
56
 
57
   ENDLOOP MX
58
 
59
     endmodule
60
 
61
 
62
 

powered by: WebSVN 2.1.0

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