2008-06-10 01:25:10 +00:00
|
|
|
// -*- Verilog -*-
|
2006-08-26 11:35:28 +00:00
|
|
|
// DESCRIPTION: Verilator: Verilog Test module
|
|
|
|
//
|
|
|
|
// This file ONLY is placed into the Public Domain, for any use,
|
|
|
|
// without warranty, 2003 by Wilson Snyder.
|
|
|
|
|
|
|
|
// This file is named .vi to test +libext+ flags.
|
2013-03-12 11:27:17 +00:00
|
|
|
module t_inst_v2k__sub
|
2006-08-26 11:35:28 +00:00
|
|
|
(
|
|
|
|
output reg [7:0] osizedreg,
|
|
|
|
output wire oonewire /*verilator public*/,
|
|
|
|
input [7:0] isizedwire,
|
2008-04-14 21:10:34 +00:00
|
|
|
input wire ionewire,
|
|
|
|
output reg [1:0] tied = 2'b10
|
2006-08-26 11:35:28 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
assign oonewire = ionewire;
|
|
|
|
|
|
|
|
always @* begin
|
|
|
|
osizedreg = isizedwire;
|
|
|
|
end
|
|
|
|
|
|
|
|
endmodule
|