21 lines
836 B
Systemverilog
21 lines
836 B
Systemverilog
//===========================================================================
|
|
// Organization : Individual Developer
|
|
// Filename : counter_b.sv
|
|
// Author : Feng Bohan
|
|
// Create Time : 20:05:28 2024-12-02
|
|
// Last Modified: 20:05:39 2024-12-02
|
|
// Abstract :
|
|
//--------------------------------------------------------------------------
|
|
// Description:
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
// Modification History:
|
|
//--------------------------------------------------------------------------
|
|
// Rev Date Who Description
|
|
// --- ---- --- -----------
|
|
// 0.0.01 2024-12-02 Feng Bohan initial version
|
|
//===========================================================================
|
|
module counter_b;
|
|
string name = "counter_b";
|
|
endmodule
|