mirror of
https://github.com/verilator/verilator.git
synced 2025-01-10 08:37:35 +00:00
32 lines
543 B
Coq
32 lines
543 B
Coq
|
// DESCRIPTION: Verilator: Verilog Test module
|
||
|
//
|
||
|
// This file ONLY is placed into the Public Domain, for any use,
|
||
|
// without warranty, 2011 by Wilson Snyder.
|
||
|
|
||
|
module t (/*AUTOARG*/
|
||
|
// Inouts
|
||
|
AVDD, AVSS
|
||
|
);
|
||
|
inout AVDD;
|
||
|
inout AVSS;
|
||
|
|
||
|
sub sub (/*AUTOINST*/
|
||
|
// Inouts
|
||
|
.AVDD (AVDD),
|
||
|
.AVSS (AVSS));
|
||
|
|
||
|
initial begin
|
||
|
$write("*-* All Finished *-*\n");
|
||
|
$finish;
|
||
|
end
|
||
|
endmodule
|
||
|
|
||
|
module sub (/*AUTOARG*/
|
||
|
// Inouts
|
||
|
AVDD, AVSS
|
||
|
);
|
||
|
// verilator no_inline_module
|
||
|
inout AVDD;
|
||
|
inout AVSS;
|
||
|
endmodule
|