23 lines
850 B
Systemverilog
23 lines
850 B
Systemverilog
//===========================================================================
|
|
// Organization : Individual Developer
|
|
// Filename : top.sv
|
|
// Author : Feng Bohan
|
|
// Create Time : 20:03:18 2024-12-02
|
|
// Last Modified: 20:04:04 2024-12-02
|
|
// Abstract :
|
|
//--------------------------------------------------------------------------
|
|
// Description:
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
// Modification History:
|
|
//--------------------------------------------------------------------------
|
|
// Rev Date Who Description
|
|
// --- ---- --- -----------
|
|
// 0.0.01 2024-12-02 Feng Bohan initial version
|
|
//===========================================================================
|
|
module top;
|
|
counter_a a();
|
|
counter_b b();
|
|
counter_c c();
|
|
endmodule
|