mirror of
https://github.com/verilator/verilator.git
synced 2025-01-07 15:17:36 +00:00
ede37bb9d8
git-svn-id: file://localhost/svn/verilator/trunk/verilator@1004 77ca24e4-aefa-0310-84f0-b9a241c72d87
17 lines
286 B
Verilog
17 lines
286 B
Verilog
// $Id$
|
|
// DESCRIPTION: Verilator: Verilog Test module
|
|
//
|
|
// This file ONLY is placed into the Public Domain, for any use,
|
|
// without warranty, 2008 by Wilson Snyder.
|
|
|
|
module t (a,z);
|
|
input a;
|
|
output z;
|
|
|
|
assign b = 1'b1;
|
|
|
|
or OR0 (nt0, a, b);
|
|
|
|
assign z = nt0;
|
|
endmodule
|