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
|
// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed into the Public Domain, for any use,
// without warranty, 2015 by Mike Thyer.
// SPDX-License-Identifier: CC0-1.0
primitive d_edge_ff (q, clock, data);
output q; reg q;
input clock, data;
initial q = 1'b1;
table
// clock data q q+
// obtain output on rising edge of clock
F 0 : ? : 0 ;
(10) 1 : ? : 1 ;
R 0 : ? : 1 ;
(0?) 1 : ? : 0 ;
endtable
endprimitive
module t (/*AUTOARG*/
// Inputs
clk
);
input clk;
reg d, q;
d_edge_ff g (q, clk, d);
int cycle=0;
initial d = 0;
always @(posedge clk or negedge clk) begin
cycle <= cycle+1;
if (cycle==0) begin
d = 1;
end
else if (cycle==1) begin
d = 0;
if (q != 1) $stop;
end
else if (cycle==2) begin
if (q != 1) $stop;
end
else if (cycle==3) begin
if (q != 0) $stop;
end
else if (cycle==4) begin
d = 1;
if (q != 1) $stop;
end
else if (cycle==5) begin
$display("d=%d clk=%d cycle=%0d", d, clk, cycle);
if (q != 1) $stop;
end
else if (cycle==6) begin
if (q != 0) $stop;
end
else if (cycle==7) begin
if (q != 1) $stop;
end
else if (cycle >= 8) begin
if (q != 0) $stop;;
$write("*-* All Finished *-*\n");
$finish;
end
end
endmodule
|