sv_lab/2_vcs_comp/partcfg.sv
2024-12-02 21:32:42 +08:00

27 lines
1015 B
Systemverilog

//===========================================================================
// Organization : Individual Developer
// Filename : partcfg.sv
// Author : Feng Bohan
// Create Time : 20:20:36 2024-12-02
// Last Modified: 20:34:34 2024-12-02
// Abstract :
//--------------------------------------------------------------------------
// Description:
//
//--------------------------------------------------------------------------
// Modification History:
//--------------------------------------------------------------------------
// Rev Date Who Description
// --- ---- --- -----------
// 0.0.01 2024-12-02 Feng Bohan initial version
//===========================================================================
config partcfg;
design testbench;
default liblist WORK TB;
partition cell counter_a;
partition cell counter_b;
partition cell counter_c;
partition instance testbench.dut_top;
partition package uvm_pkg;
endconfig