22 lines
860 B
Systemverilog
22 lines
860 B
Systemverilog
//===========================================================================
|
|
// Organization : Individual Developer
|
|
// Filename : counter_a.sv
|
|
// Author : Feng Bohan
|
|
// Create Time : 20:04:22 2024-12-02
|
|
// Last Modified: 20:05:23 2024-12-02
|
|
// Abstract :
|
|
//--------------------------------------------------------------------------
|
|
// Description:
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
// Modification History:
|
|
//--------------------------------------------------------------------------
|
|
// Rev Date Who Description
|
|
// --- ---- --- -----------
|
|
// 0.0.01 2024-12-02 Feng Bohan initial version
|
|
//===========================================================================
|
|
module counter_a;
|
|
string name = "counter_a";
|
|
string age = "10";
|
|
endmodule
|