verilator/test_regress/t/t_var_dup_bad.v
2019-06-12 19:17:10 -04:00

42 lines
529 B
Verilog

// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed into the Public Domain, for any use,
// without warranty, 2007 by Wilson Snyder.
module t (/*AUTOARG*/
// Outputs
ok, o, og, org,
// Inputs
i
);
reg a;
reg a;
integer l;
integer l;
bit b;
bit b;
output ok;
reg ok;
output o;
output o;
input i;
input i;
output oi;
input oi;
output og;
reg og;
reg og;
output reg org;
output reg org;
endmodule