interface_bundle.v 576 Bytes
Newer Older
1 2 3 4 5
module impl;
    reg [1:0] b_index;
    reg b_clock;
    reg [3:0] b_inp;
    wire b_out;
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25

    initial b_index = 0;
    always @(posedge b_clock)
        b_index <= b_index + 1;

    initial b_inp = 4'b1111;
    always @(posedge b_clock)
        b_inp[b_index] <= b_out;

    assign b_out = ^b_inp;

    initial begin
        b_clock <= 0;
        forever
            #5 b_clock <= ~b_clock;
    end

    initial begin
        $monitor("%b %b %b %b", b_index, b_clock, b_inp, b_out);
        #100;
26
        $finish(0);
27 28 29
    end
endmodule

30 31 32
module top;
    impl impl();
endmodule