2017-10-02 01:31:40 +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, 2017 by Wilson Snyder.
|
|
|
|
// SPDX-License-Identifier: CC0-1.0
|
2017-10-02 01:31:40 +00:00
|
|
|
|
|
|
|
module t (/*AUTOARG*/
|
|
|
|
// Outputs
|
2021-08-24 00:13:09 +00:00
|
|
|
value, value2
|
2017-10-02 01:31:40 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
output reg [63:0] value;
|
2021-08-24 00:13:09 +00:00
|
|
|
output wire [64:0] value2;
|
|
|
|
|
|
|
|
assign value2 = {8'bx, 57'h12};
|
2017-10-02 01:31:40 +00:00
|
|
|
|
|
|
|
initial begin
|
|
|
|
$write("*-* All Finished *-*\n");
|
|
|
|
$finish;
|
|
|
|
end
|
|
|
|
endmodule
|