OpenCores
URL https://opencores.org/ocsvn/a-z80/a-z80/trunk

Subversion Repositories a-z80

[/] [a-z80/] [trunk/] [host/] [basic_nexys3/] [test_host.v] - Blame information for rev 8

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 8 gdevic
`timescale 1ns / 1ps
2
 
3
////////////////////////////////////////////////////////////////////////////////
4
// Company:
5
// Engineer:
6
//
7
// Create Date:   00:18:56 02/14/2016
8
// Design Name:   host
9
// Module Name:   R:/Z80/host/basic_nexys3/test_host.v
10
// Project Name:  host_nexys3
11
// Target Device:
12
// Tool versions:
13
// Description:
14
//
15
// Verilog Test Fixture created by ISE for module: host
16
//
17
// Dependencies:
18
//
19
// Revision:
20
// Revision 0.01 - File Created
21
// Additional Comments:
22
//
23
////////////////////////////////////////////////////////////////////////////////
24
 
25
module test_host;
26
 
27
    // Inputs
28
    reg CLOCK_100;
29
    reg KEY0;
30
    reg KEY1;
31
    reg KEY2;
32
 
33
    // Outputs
34
    wire UART_TXD;
35
    wire [7:0] GPIO_1;
36
    wire [7:0] GPIO_2;
37
 
38
    // Bidirs
39
    wire [7:0] GPIO_0;
40
    wire [7:0] GPIO_3;
41
 
42
    // Instantiate the Unit Under Test (UUT)
43
    host uut (
44
        .CLOCK_100(CLOCK_100),
45
        .KEY0(KEY0),
46
        .KEY1(KEY1),
47
        .KEY2(KEY2),
48
        .UART_TXD(UART_TXD),
49
        .GPIO_0(GPIO_0),
50
        .GPIO_1(GPIO_1),
51
        .GPIO_2(GPIO_2),
52
        .GPIO_3(GPIO_3)
53
    );
54
 
55
    initial begin
56
        CLOCK_100 = 0;
57
        KEY0 = 1;
58
        KEY1 = 0;
59
        KEY2 = 0;
60
        // 100 MHz -> 10MHz (pll) -> div 4 (clk divider)
61
        #(100/10*4 * 3); // hold for 3 CPU clock cycles
62
        #(100/10*4 * 3); // ...twice, due to the way our CLOCK_100 gen below works
63
        KEY0 = 0;
64
    end
65
 
66
    initial begin
67
        forever #1 CLOCK_100 = ~CLOCK_100;
68
    end
69
 
70
endmodule
71
 

powered by: WebSVN 2.1.0

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