OpenCores
URL https://opencores.org/ocsvn/fpga-median/fpga-median/trunk

Subversion Repositories fpga-median

[/] [fpga-median/] [tags/] [fpga-filter-b1/] [sim/] [tb/] [dut_if.sv] - Blame information for rev 8

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 8 joaocarlos
/* --------------------------------------------------------------------------------
2
 This file is part of FPGA Median Filter.
3
 
4
    FPGA Median Filter is free software: you can redistribute it and/or modify
5
    it under the terms of the GNU General Public License as published by
6
    the Free Software Foundation, either version 3 of the License, or
7
    (at your option) any later version.
8
 
9
    FPGA Median Filter is distributed in the hope that it will be useful,
10
    but WITHOUT ANY WARRANTY; without even the implied warranty of
11
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
    GNU General Public License for more details.
13
 
14
    You should have received a copy of the GNU General Public License
15
    along with FPGA Median Filter.  If not, see .
16
-------------------------------------------------------------------------------- */
17 2 joaocarlos
// +----------------------------------------------------------------------------
18
// Universidade Federal da Bahia
19
//------------------------------------------------------------------------------
20
// PROJECT: FPGA Median Filter
21
//------------------------------------------------------------------------------
22
// FILE NAME            : dut_if.sv
23
// AUTHOR               : Laue Rami Souza Costa de Jesus
24
// -----------------------------------------------------------------------------
25
 
26
interface dut_if (input bit clk);
27
 
28
//input signals task
29
 
30
logic rst_n;
31
logic start;
32
 
33
logic [7:0] pixel1;
34
logic [7:0] pixel2;
35
logic [7:0] pixel3;
36
logic [7:0] pixel4;
37
 
38
logic [31:0] word0;
39
logic [31:0] word1;
40
logic [31:0] word2;
41
 
42
logic [9:0] waddr;
43
logic [1:0] window_line_counter;
44
 
45
//output signals task
46
 
47
logic [31:0] ch_word0;
48
logic [31:0] ch_word1;
49
logic [31:0] ch_word2;
50
 
51
logic end_of_operation;
52
 
53
logic [7:0] result [0:51983];
54
 
55
endinterface

powered by: WebSVN 2.1.0

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