2022-10-15 19:59:07 +02:00
|
|
|
// DESCRIPTION: Verilator: Verilog Test module
|
|
|
|
|
//
|
|
|
|
|
// This file ONLY is placed under the Creative Commons Public Domain, for
|
|
|
|
|
// any use, without warranty, 2022 by Wilson Snyder.
|
|
|
|
|
// SPDX-License-Identifier: CC0-1.0
|
|
|
|
|
|
2025-05-17 04:32:25 +02:00
|
|
|
extern program ex_pgm;
|
|
|
|
|
extern interface ex_ifc;
|
|
|
|
|
extern module ex_mod;
|
2022-10-15 19:59:07 +02:00
|
|
|
|
2025-09-13 15:28:43 +02:00
|
|
|
module t;
|
2022-10-15 19:59:07 +02:00
|
|
|
|
2025-05-17 04:32:25 +02:00
|
|
|
ex_pgm u_pgm();
|
|
|
|
|
ex_ifc u_ifc();
|
|
|
|
|
ex_mod u_mod();
|
2022-10-15 19:59:07 +02:00
|
|
|
|
|
|
|
|
initial begin
|
2025-05-17 04:32:25 +02:00
|
|
|
ex_task();
|
2022-10-15 19:59:07 +02:00
|
|
|
$write("*-* All Finished *-*\n");
|
|
|
|
|
$finish;
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
endmodule
|