2012-03-10 00:34:02 +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, 2012 by Wilson Snyder.
|
|
|
|
// SPDX-License-Identifier: CC0-1.0
|
2012-03-10 00:34:02 +00:00
|
|
|
// See bug408
|
|
|
|
|
|
|
|
module top
|
|
|
|
(
|
|
|
|
output logic [1:0] q,
|
|
|
|
input logic [1:0] d,
|
2019-05-13 23:47:52 +00:00
|
|
|
input logic clk
|
2012-03-10 00:34:02 +00:00
|
|
|
);
|
|
|
|
|
2019-05-13 23:47:52 +00:00
|
|
|
genvar i;
|
|
|
|
assign q[i] = d[i];
|
2012-03-10 00:34:02 +00:00
|
|
|
endmodule
|