2014-12-20 13:28:31 +00:00
|
|
|
// DESCRIPTION: Verilator: Verilog Test module
|
|
|
|
//
|
2020-03-21 15:24:24 +00:00
|
|
|
// This file ONLY is placed under the Creative Commons Public Domain, for
|
|
|
|
// any use, without warranty, 2014 by Wilson Snyder.
|
|
|
|
// SPDX-License-Identifier: CC0-1.0
|
2014-12-20 13:28:31 +00:00
|
|
|
|
2020-12-08 13:40:22 +00:00
|
|
|
module t (b, b2);
|
2014-12-20 13:28:31 +00:00
|
|
|
output reg [31:0] b;
|
2020-12-08 13:40:22 +00:00
|
|
|
output reg [31:0] b2; // Need 2 vars of same width to cover V3Stats
|
2014-12-20 13:28:31 +00:00
|
|
|
initial begin
|
2020-12-08 13:40:22 +00:00
|
|
|
b = 11;
|
|
|
|
b2 = 22;
|
2014-12-20 13:28:31 +00:00
|
|
|
$write("*-* All Finished *-*\n");
|
|
|
|
$finish;
|
|
|
|
end
|
|
|
|
endmodule
|