2012-03-10 01:34:02 +01:00
|
|
|
// DESCRIPTION: Verilator: Verilog Test module
|
|
|
|
|
//
|
|
|
|
|
// This file ONLY is placed into the Public Domain, for any use,
|
|
|
|
|
// without warranty, 2012 by Wilson Snyder.
|
|
|
|
|
// See bug408
|
|
|
|
|
|
|
|
|
|
module top
|
|
|
|
|
(
|
|
|
|
|
output logic [1:0] q,
|
|
|
|
|
input logic [1:0] d,
|
2019-05-14 01:47:52 +02:00
|
|
|
input logic clk
|
2012-03-10 01:34:02 +01:00
|
|
|
);
|
|
|
|
|
|
2019-05-14 01:47:52 +02:00
|
|
|
genvar i;
|
|
|
|
|
assign q[i] = d[i];
|
2012-03-10 01:34:02 +01:00
|
|
|
endmodule
|