2021-03-17 03:44:13 +01:00
|
|
|
// DESCRIPTION: Verilator: Verilog Test module
|
|
|
|
|
//
|
|
|
|
|
// This file ONLY is placed under The Creative Commons Public Domain, for
|
|
|
|
|
// any use, without warranty, 2020 by Wilson Snyder.
|
|
|
|
|
// SPDX-License-Identifier: CC0-1.0
|
|
|
|
|
|
|
|
|
|
module pre_no_ts;
|
|
|
|
|
endmodule
|
|
|
|
|
|
2025-11-13 01:40:59 +01:00
|
|
|
`timescale 1ns / 1ns
|
2021-03-17 03:44:13 +01:00
|
|
|
|
|
|
|
|
module t;
|
2025-11-13 01:40:59 +01:00
|
|
|
pre_no_ts pre_no_ts ();
|
|
|
|
|
post_no_ts pst_no_ts ();
|
2021-03-17 03:44:13 +01:00
|
|
|
endmodule
|
|
|
|
|
|
|
|
|
|
module post_no_ts;
|
|
|
|
|
endmodule
|