forked from github/verilator
29 lines
503 B
Systemverilog
29 lines
503 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.
|
|
|
|
// Legal with Verilog 1995 style ports
|
|
|
|
module t
|
|
(/*AUTOARG*/
|
|
// Outputs
|
|
ok_o_w, ok_o_r, ok_o_ra, ok_or, ok_ow, ok_owa
|
|
);
|
|
|
|
output ok_o_w;
|
|
wire ok_o_w;
|
|
|
|
output ok_o_r;
|
|
reg ok_o_r;
|
|
|
|
output [1:0] ok_o_ra;
|
|
reg [1:0] ok_o_ra;
|
|
|
|
output reg ok_or;
|
|
|
|
output wire ok_ow;
|
|
|
|
output wire [1:0] ok_owa;
|
|
endmodule
|