File: t_interface_virtual_controlflow.v

package info (click to toggle)
verilator 5.040-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 164,628 kB
  • sloc: cpp: 145,372; python: 21,412; ansic: 10,559; yacc: 6,085; lex: 1,931; makefile: 1,264; sh: 494; perl: 282; fortran: 22
file content (73 lines) | stat: -rw-r--r-- 1,836 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed under the Creative Commons Public Domain, for
// any use, without warranty, 2023 by Antmicro Ltd.
// SPDX-License-Identifier: CC0-1.0

interface Bus1;
    logic [15:0] data;
endinterface
interface Bus2;
    logic [15:0] data;
endinterface
interface Bus3;
    logic [15:0] data;
endinterface

module t_controlflow;
    logic clk = 0;
    integer cyc = 0;
    Bus1 intf1();
    Bus2 intf2();
    Bus3 intf3(), intf4();
    virtual Bus1 vif1 = intf1;
    virtual Bus2 vif2 = intf2;
    virtual Bus3 vif3 = intf3, vif4 = intf4;

    // Finish on negedge so that $finish is last
    always @(negedge clk) begin
        if (cyc >= 10) begin
            $write("*-* All Finished *-*\n");
            $finish;
        end
    end

    function void assign_to_intf3();
        intf3.data = 'hcafe;
    endfunction

    always @(posedge clk) begin
        cyc <= cyc + 1;
        if (cyc == 1 || cyc == 3 || cyc == 5) intf1.data = 'hdead;
        else vif2.data = 'hbeef;
        if (cyc == 1 || cyc == 3 || cyc == 5) begin
            if (cyc < 3) intf3.data = 'hfafa;
            intf4.data = 'hface;
        end
        if (cyc == 7) begin
            intf4.data = 'hcafe;
        end
        if (cyc == 9) begin
            assign_to_intf3;
            intf4.data = 'hdeaf;
        end
    end

    always @(vif1.data) begin
        $write("[%0t] vif1.data==%h\n", $time, vif1.data);
    end
    always @(intf2.data) begin
        $write("[%0t] intf2.data==%h\n", $time, intf2.data);
    end
    always @(vif3.data) begin
        $write("[%0t] vif3.data==%h\n", $time, vif3.data);
    end
    always @(intf4.data) begin
        $write("[%0t] intf4.data==%h\n", $time, intf4.data);
    end

    initial begin
        repeat (20) #5ns clk = ~clk;
    end

endmodule