forked from github/verilator
15 lines
303 B
Systemverilog
15 lines
303 B
Systemverilog
|
// DESCRIPTION: Verilator: Verilog Test module
|
||
|
//
|
||
|
// This file ONLY is placed into the Public Domain, for any use,
|
||
|
// without warranty, 2019 by Wilson Snyder.
|
||
|
|
||
|
// Illegal with ANSI Verilog 2001 style ports
|
||
|
module t
|
||
|
(
|
||
|
output bad_o_w,
|
||
|
output bad_o_r);
|
||
|
|
||
|
wire bad_o_w;
|
||
|
reg bad_o_r;
|
||
|
endmodule
|