2021-06-28 20:36:47 +00:00
|
|
|
// DESCRIPTION: Verilator: Verilog Test module
|
|
|
|
//
|
2017-11-28 02:08:19 +00:00
|
|
|
// This file ONLY is placed into the Public Domain, for any use,
|
2021-06-28 20:36:47 +00:00
|
|
|
// without warranty, 2008 by Lane Brooks.
|
|
|
|
// SPDX-License-Identifier: CC0-1.0
|
2017-11-28 02:08:19 +00:00
|
|
|
|
|
|
|
module top (input A, input B, input SEL, output Y1, output Y2, output Z);
|
|
|
|
io io1(.A(A), .OE( SEL), .Z(Z), .Y(Y1));
|
|
|
|
pass io2(.A(B), .OE(!SEL), .Z(Z), .Y(Y2));
|
|
|
|
assign Z = 1'bz;
|
|
|
|
endmodule
|
|
|
|
|
|
|
|
module pass (input A, input OE, inout Z, output Y);
|
|
|
|
io io(.A(A), .OE(OE), .Z(Z), .Y(Y));
|
|
|
|
assign Z = 1'bz;
|
|
|
|
endmodule
|
|
|
|
|
|
|
|
module io (input A, input OE, inout Z, output Y);
|
|
|
|
assign Z = (OE) ? A : 1'bz;
|
|
|
|
assign Y = Z;
|
|
|
|
assign Z = 1'bz;
|
|
|
|
endmodule
|