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

Subversion Repositories axi_slave

[/] [axi_slave/] [trunk/] [src/] [base/] [axi_slave_trace.v] - Blame information for rev 13

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 13 eyalhoc
<##//////////////////////////////////////////////////////////////////
2
////                                                             ////
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
//////////////////////////////////////////////////////////////////##>
29 2 eyalhoc
 
30
OUTFILE PREFIX_trace.v
31
 
32
INCLUDE def_axi_slave.txt
33
 
34
module PREFIX_trace(PORTS);
35 5 eyalhoc
   parameter                  SLAVE_NUM = 0;
36 2 eyalhoc
 
37
   input                      clk;
38
   input                      reset;
39
 
40
   input                      GROUP_STUB_MEM;
41
 
42
 
43
   reg                        RD_d;
44
   reg [ADDR_BITS-1:0]         ADDR_RD_d;
45
 
46
   wire [31:0]                 ADDR_WR_disp =  ADDR_WR;
47
   wire [31:0]                 ADDR_RD_disp =  ADDR_RD_d;
48 5 eyalhoc
 
49
   reg [64*8-1:0]             filename;
50 2 eyalhoc
   integer                    file_ptr;
51
 
52 5 eyalhoc
 
53 2 eyalhoc
   initial
54 5 eyalhoc
     begin
55
        //erase trace
56
        file_ptr = $fopen({"PREFIX.trc"}, "w");
57
        $fwrite(file_ptr, "\n");
58
        $fclose(file_ptr);
59
     end
60 2 eyalhoc
 
61
   always @(posedge clk or posedge reset)
62
     if (reset)
63
       begin
64
          ADDR_RD_d <= #FFD 'd0;
65
          RD_d <= #FFD 'd0;
66
       end
67
     else
68
       begin
69
          ADDR_RD_d <= #FFD ADDR_RD;
70
          RD_d <= #FFD RD;
71
       end
72
 
73
   always @(posedge clk)
74
     if (WR)
75 5 eyalhoc
       begin
76
          file_ptr = $fopen({"PREFIX.trc"}, "a");
77
          $fwrite(file_ptr, "%16d: PREFIX%0d WR: Addr: 0x%EXPR(ADDR_BITS/4)h, Data: 0x%EXPR(DATA_BITS/4)h, Bsel: 0x%EXPR(DATA_BITS/32)h\n", $time, SLAVE_NUM, ADDR_WR_disp, DIN, BSEL);
78
          $fclose(file_ptr);
79
       end
80
 
81 2 eyalhoc
   always @(posedge clk)
82
     if (RD_d)
83 5 eyalhoc
       begin
84
          file_ptr = $fopen({"PREFIX.trc"}, "a");
85
          $fwrite(file_ptr, "%16d: PREFIX%0d RD: Addr: 0x%EXPR(ADDR_BITS/4)h, Data: 0x%EXPR(DATA_BITS/4)h\n", $time, SLAVE_NUM, ADDR_RD_disp, DOUT);
86
          $fclose(file_ptr);
87
       end
88 2 eyalhoc
 
89
endmodule
90
 
91
 

powered by: WebSVN 2.1.0

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