forked from github/verilator
20 lines
355 B
Systemverilog
20 lines
355 B
Systemverilog
|
// DESCRIPTION: Verilator: Verilog Test module
|
||
|
//
|
||
|
// This file ONLY is placed under the Creative Commons Public Domain, for
|
||
|
// any use, without warranty, 2022 by Geza Lore.
|
||
|
// SPDX-License-Identifier: CC0-1.0
|
||
|
|
||
|
module t (/*AUTOARG*/
|
||
|
// Inputs
|
||
|
clk
|
||
|
);
|
||
|
input clk;
|
||
|
|
||
|
wire a;
|
||
|
wire b;
|
||
|
|
||
|
assign a = b + 1'b1;
|
||
|
assign b = a + 1'b1;
|
||
|
|
||
|
endmodule
|