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

Subversion Repositories qaz_libs

[/] [qaz_libs/] [trunk/] [axi4_lib/] [sim/] [src/] [legacy/] [axi4_models/] [tb_axi4_multi_port_memory.sv] - Blame information for rev 45

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 45 qaztronic
//////////////////////////////////////////////////////////////////////
2
////                                                              ////
3
//// Copyright (C) 2015 Authors and OPENCORES.ORG                 ////
4
////                                                              ////
5
//// This source file may be used and distributed without         ////
6
//// restriction provided that this copyright statement is not    ////
7
//// removed from the file and that any derivative work contains  ////
8
//// the original copyright notice and the associated disclaimer. ////
9
////                                                              ////
10
//// This source file is free software; you can redistribute it   ////
11
//// and/or modify it under the terms of the GNU Lesser General   ////
12
//// Public License as published by the Free Software Foundation; ////
13
//// either version 2.1 of the License, or (at your option) any   ////
14
//// later version.                                               ////
15
////                                                              ////
16
//// This source is distributed in the hope that it will be       ////
17
//// useful, but WITHOUT ANY WARRANTY; without even the implied   ////
18
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR      ////
19
//// PURPOSE.  See the GNU Lesser General Public License for more ////
20
//// details.                                                     ////
21
////                                                              ////
22
//// You should have received a copy of the GNU Lesser General    ////
23
//// Public License along with this source; if not, download it   ////
24
//// from http://www.opencores.org/lgpl.shtml                     ////
25
////                                                              ////
26
//////////////////////////////////////////////////////////////////////
27
 
28
module
29
  tb_axi4_multi_port_memory
30
  #(
31
    A     = 32, // address bus width
32
    N     = 8,  // data bus width in bytes
33
    I     = 1,   // ID width
34
    PORTS,
35
    MAXWAITS = 256,
36
    type WORD_T = byte
37
  )
38
  (
39
    axi4_if     axi4_s[PORTS],
40
 
41
    input       aclk,
42
    input       aresetn
43
  );
44
 
45
  // --------------------------------------------------------------------
46
  //
47
  import axis_bfm_pkg::*;
48
  import axi4_memory_pkg::*;
49
  import axi4_arbiter_pkg::*;
50
 
51
 
52
  // --------------------------------------------------------------------
53
  //
54
  axi4_if #(.A(A), .N(N), .I(I)) axi4_bus(.*);
55
 
56
 
57
  // --------------------------------------------------------------------
58
  //
59
  axi4_arbiter_class #(A, N, I) arb_h;
60
  axi4_memory_class #(A, N, I, WORD_T) m_h;
61
 
62
  initial
63
  begin
64
    arb_h = new(axi4_s, axi4_bus);
65
    m_h = new(axi4_bus);
66
  end
67
 
68
 
69
  // --------------------------------------------------------------------
70
  //
71
  axi4_checker #(.A(A), .N(N), .MAXWAITS(MAXWAITS))
72
    axi4_bus_checker(.axi4_in(axi4_bus));
73
 
74
 
75
  // --------------------------------------------------------------------
76
  //
77
  generate
78
    begin: axi4_s_cherkers
79
      for(genvar j = 0; j < PORTS; j++)
80
        axi4_checker #(.A(A), .N(N), .MAXWAITS(MAXWAITS))
81
          axi4_checker_i(.axi4_in(axi4_s[j]));
82
    end
83
  endgenerate
84
 
85
 
86
// --------------------------------------------------------------------
87
//
88
endmodule
89
 

powered by: WebSVN 2.1.0

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