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

Subversion Repositories wf3d

[/] [wf3d/] [trunk/] [scenario/] [3d/] [tb_task.v] - Blame information for rev 9

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 specular
//=======================================================================
2
// Project Monophony
3
//   Wire-Frame 3D Graphics Accelerator IP Core
4
//
5
// File:
6
//  tb_task.v
7
//
8
// Abstract:
9
//   simulation tasks
10
//
11
// Author:
12 9 specular
//   Kenji Ishimaru (info.info.wf3d@gmail.com)
13 2 specular
//
14
//======================================================================
15
//
16
// Copyright (c) 2015, Kenji Ishimaru
17
// All rights reserved.
18
//
19
// Redistribution and use in source and binary forms, with or without
20
// modification, are permitted provided that the following conditions are met:
21
//
22
//  -Redistributions of source code must retain the above copyright notice,
23
//   this list of conditions and the following disclaimer.
24
//  -Redistributions in binary form must reproduce the above copyright notice,
25
//   this list of conditions and the following disclaimer in the documentation
26
//   and/or other materials provided with the distribution.
27
//
28
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
29
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
30
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
31
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
32
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
33
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
34
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
35
// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
36
// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
37
// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
38
// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39
//
40
// Revision History
41
 
42
`ifdef D3D_WISHBONE
43
task reg_write;
44
  input [7:0] adrs;
45
  input [3:0] be;
46
  input [31:0] wd;
47
  begin
48
    s_wb_stb_i = 1;
49
    s_wb_we_i = 1;
50
    s_wb_adr_i = adrs;
51
    s_wb_sel_i = be;
52
    s_wb_dat_i = wd;
53
    @(posedge clk_core);
54
    while (!s_wb_ack_o)
55
      @(posedge clk_core);
56
    s_wb_stb_i = 0;
57
    @(posedge clk_core);
58
  end
59
endtask
60
 
61
task reg_read;
62
  input [7:0] adrs;
63
  output [31:0] rd;
64
  begin
65
    s_wb_stb_i = 1;
66
    s_wb_we_i = 0;
67
    s_wb_adr_i = adrs;
68
    @(posedge clk_core);
69
    while (!s_wb_ack_o)
70
      @(posedge clk_core);
71
    s_wb_stb_i = 0;
72
    rd = s_wb_dat_o;
73
    @(posedge clk_core);
74
 end
75
endtask
76
`else
77
task reg_write;
78
  input [7:0] adrs;
79
  input [3:0] be;
80
  input [31:0] wd;
81
  begin
82
    i_req_s = 1;
83
    i_wr_s = 1;
84
    i_adrs_s = adrs;
85
    i_be_s = be;
86
    i_dbw_s = wd;
87
    @(posedge clk_core);
88
    while (!o_ack_s)
89
      @(posedge clk_core);
90
    i_req_s = 0;
91
    @(posedge clk_core);
92
  end
93
endtask
94
 
95
task reg_read;
96
  input [7:0] adrs;
97
  output [31:0] rd;
98
  begin
99
    i_req_s = 1;
100
    i_wr_s = 0;
101
    i_adrs_s = adrs;
102
    @(posedge clk_core);
103
    while (!o_ack_s)
104
      @(posedge clk_core);
105
    while (!o_strr_s) begin
106
      i_req_s = 0;
107
      @(posedge clk_core);
108
    end
109
    rd = o_dbr_s;
110
    @(posedge clk_core);
111
 end
112
endtask
113
 
114
`endif
115
 

powered by: WebSVN 2.1.0

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