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
|
// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed under the Creative Commons Public Domain, for
// any use, without warranty, 2025 by Wilson Snyder.
// SPDX-License-Identifier: CC0-1.0
`define stop $stop
`define checkh(gotv,expv) do if ((gotv) !== (expv)) begin $write("%%Error: %s:%0d: got=%0x exp=%0x (%s !== %s)\n", `__FILE__,`__LINE__, (gotv), (expv), `"gotv`", `"expv`"); `stop; end while(0);
module t(/*AUTOARG*/
// Inputs
clk
);
input clk;
localparam int ITERATIONS = 5;
localparam int N = 227;
logic [N-1:0] gclk = {N{1'b0}};
// Not actually used, but creates an extra internal trigger
export "DPI-C" function toggle;
function void toggle();
gclk = ~gclk;
endfunction
int cyc = 0;
always @(posedge clk) begin
if (~|gclk) begin
gclk[0] = 1'b1;
end else begin
gclk = {gclk[N-2:0], gclk[N-1]};
end
cyc <= cyc + 32'd1;
if (cyc == ITERATIONS*N - 1) begin
$display("cyc");
$write("*-* All Finished *-*\n");
$finish;
end
end
for (genvar n = 0; n < N; n++) begin : gen
int cnt = 0;
always @(posedge gclk[n]) cnt <= cnt + 1;
wire int cnt_plus_one = cnt + 1;
final begin
`checkh(cnt_plus_one, ITERATIONS + 1);
end
end
endmodule
|