├── .gitignore ├── Captable └── cln28hpl_1p10m+alrdl_5x2yu2yz_typical.capTbl ├── Constraints └── constraints_top.sdc ├── Documentation └── Pics │ ├── Incisive.png │ ├── Shell.png │ ├── SimVision.png │ ├── log.png │ ├── readme │ ├── results.png │ └── wavefrom.png ├── Equivalence_checking ├── counter.do ├── libtov.do └── slow_vdd1v0_basicCells.v ├── LEF ├── gsclib045_macro.lef └── gsclib045_tech.lef ├── LIB ├── fast_vdd1v0_basicCells.lib ├── fast_vdd1v0_basicCells.v ├── slow_vdd1v0_basiccells.lib └── slow_vdd1v0_basiccells.v ├── LICENSE ├── QRC_tech └── gpdk045.tch ├── README.md ├── RTL └── counter.v ├── STA ├── counter.scandef ├── counter.spef ├── counter.view ├── counter_netlist.v ├── counter_physical.v ├── counter_postCTS.sdc ├── counter_sdc.sdc ├── pins.io └── runPnR.tcl ├── Simulation ├── README.md ├── cleanup_dirs ├── counter.v └── counter_test.v ├── Synthesis ├── README.md └── syn.tcl ├── cshrc ├── gate_level_simulation ├── counter_netlist.v ├── counter_test.v ├── delays.sdf ├── delays.sdf.X ├── sdf.log ├── slow_vdd1v0_basicCells.v ├── waves.shm │ ├── waves-1.trn │ ├── waves.dsn │ └── waves.trn ├── xcelium.d │ ├── history │ ├── pakvst.ts │ ├── run.lnx86.22.09.d │ │ ├── OVMHOME │ │ ├── UVMHOME │ │ ├── bind.lst.lnx86 │ │ ├── cds.lib │ │ ├── cdsrun.lib │ │ ├── files.ts │ │ ├── hdl.var │ │ ├── hdlrun.var │ │ ├── sjcvl-pamulasa_8469_cdsrun.lib │ │ ├── sjcvl-pamulasa_8469_hdlrun.var │ │ ├── xllibs │ │ │ ├── cds.lib │ │ │ ├── hdl.var │ │ │ └── slow_vdd1v0_basicCells │ │ │ │ ├── cdsinfo.tag │ │ │ │ ├── pakvst.ts │ │ │ │ └── xm.lnx86.175.pak │ │ ├── xmelab.args │ │ ├── xmelab.env │ │ ├── xmelab.hrd │ │ ├── xmsim.args │ │ ├── xmsim.env │ │ ├── xmsim_restart.args │ │ ├── xmsim_restart.env │ │ ├── xmvlog.args │ │ ├── xmvlog.env │ │ ├── xmvlog.files │ │ ├── xmvlog.hrd │ │ └── xrun.args │ └── worklib │ │ ├── cdsinfo.tag │ │ ├── pakvst.ts │ │ └── xm.lnx86.175.pak ├── xrun.history ├── xrun.key └── xrun.log └── physical_design ├── counter.scandef ├── counter.view ├── counter_netlist.v ├── counter_sdc.sdc ├── pins.io ├── power.tcl └── readme /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/.gitignore -------------------------------------------------------------------------------- /Captable/cln28hpl_1p10m+alrdl_5x2yu2yz_typical.capTbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/Captable/cln28hpl_1p10m+alrdl_5x2yu2yz_typical.capTbl -------------------------------------------------------------------------------- /Constraints/constraints_top.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/Constraints/constraints_top.sdc -------------------------------------------------------------------------------- /Documentation/Pics/Incisive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/Documentation/Pics/Incisive.png -------------------------------------------------------------------------------- /Documentation/Pics/Shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/Documentation/Pics/Shell.png -------------------------------------------------------------------------------- /Documentation/Pics/SimVision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/Documentation/Pics/SimVision.png -------------------------------------------------------------------------------- /Documentation/Pics/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/Documentation/Pics/log.png -------------------------------------------------------------------------------- /Documentation/Pics/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/Documentation/Pics/readme -------------------------------------------------------------------------------- /Documentation/Pics/results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/Documentation/Pics/results.png -------------------------------------------------------------------------------- /Documentation/Pics/wavefrom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/Documentation/Pics/wavefrom.png -------------------------------------------------------------------------------- /Equivalence_checking/counter.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/Equivalence_checking/counter.do -------------------------------------------------------------------------------- /Equivalence_checking/libtov.do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/Equivalence_checking/libtov.do -------------------------------------------------------------------------------- /Equivalence_checking/slow_vdd1v0_basicCells.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/Equivalence_checking/slow_vdd1v0_basicCells.v -------------------------------------------------------------------------------- /LEF/gsclib045_macro.lef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/LEF/gsclib045_macro.lef -------------------------------------------------------------------------------- /LEF/gsclib045_tech.lef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/LEF/gsclib045_tech.lef -------------------------------------------------------------------------------- /LIB/fast_vdd1v0_basicCells.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/LIB/fast_vdd1v0_basicCells.lib -------------------------------------------------------------------------------- /LIB/fast_vdd1v0_basicCells.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/LIB/fast_vdd1v0_basicCells.v -------------------------------------------------------------------------------- /LIB/slow_vdd1v0_basiccells.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/LIB/slow_vdd1v0_basiccells.lib -------------------------------------------------------------------------------- /LIB/slow_vdd1v0_basiccells.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/LIB/slow_vdd1v0_basiccells.v -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/LICENSE -------------------------------------------------------------------------------- /QRC_tech/gpdk045.tch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/QRC_tech/gpdk045.tch -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/README.md -------------------------------------------------------------------------------- /RTL/counter.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/RTL/counter.v -------------------------------------------------------------------------------- /STA/counter.scandef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/STA/counter.scandef -------------------------------------------------------------------------------- /STA/counter.spef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/STA/counter.spef -------------------------------------------------------------------------------- /STA/counter.view: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/STA/counter.view -------------------------------------------------------------------------------- /STA/counter_netlist.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/STA/counter_netlist.v -------------------------------------------------------------------------------- /STA/counter_physical.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/STA/counter_physical.v -------------------------------------------------------------------------------- /STA/counter_postCTS.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/STA/counter_postCTS.sdc -------------------------------------------------------------------------------- /STA/counter_sdc.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/STA/counter_sdc.sdc -------------------------------------------------------------------------------- /STA/pins.io: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/STA/pins.io -------------------------------------------------------------------------------- /STA/runPnR.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/STA/runPnR.tcl -------------------------------------------------------------------------------- /Simulation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/Simulation/README.md -------------------------------------------------------------------------------- /Simulation/cleanup_dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/Simulation/cleanup_dirs -------------------------------------------------------------------------------- /Simulation/counter.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/Simulation/counter.v -------------------------------------------------------------------------------- /Simulation/counter_test.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/Simulation/counter_test.v -------------------------------------------------------------------------------- /Synthesis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/Synthesis/README.md -------------------------------------------------------------------------------- /Synthesis/syn.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/Synthesis/syn.tcl -------------------------------------------------------------------------------- /cshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/cshrc -------------------------------------------------------------------------------- /gate_level_simulation/counter_netlist.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/gate_level_simulation/counter_netlist.v -------------------------------------------------------------------------------- /gate_level_simulation/counter_test.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/gate_level_simulation/counter_test.v -------------------------------------------------------------------------------- /gate_level_simulation/delays.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/gate_level_simulation/delays.sdf -------------------------------------------------------------------------------- /gate_level_simulation/delays.sdf.X: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/gate_level_simulation/delays.sdf.X -------------------------------------------------------------------------------- /gate_level_simulation/sdf.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/gate_level_simulation/sdf.log -------------------------------------------------------------------------------- /gate_level_simulation/slow_vdd1v0_basicCells.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/gate_level_simulation/slow_vdd1v0_basicCells.v -------------------------------------------------------------------------------- /gate_level_simulation/waves.shm/waves-1.trn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/gate_level_simulation/waves.shm/waves-1.trn -------------------------------------------------------------------------------- /gate_level_simulation/waves.shm/waves.dsn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/gate_level_simulation/waves.shm/waves.dsn -------------------------------------------------------------------------------- /gate_level_simulation/waves.shm/waves.trn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/gate_level_simulation/waves.shm/waves.trn -------------------------------------------------------------------------------- /gate_level_simulation/xcelium.d/history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/gate_level_simulation/xcelium.d/history -------------------------------------------------------------------------------- /gate_level_simulation/xcelium.d/pakvst.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gate_level_simulation/xcelium.d/run.lnx86.22.09.d/OVMHOME: -------------------------------------------------------------------------------- 1 | (null) 2 | -------------------------------------------------------------------------------- /gate_level_simulation/xcelium.d/run.lnx86.22.09.d/UVMHOME: -------------------------------------------------------------------------------- 1 | (null) 2 | -------------------------------------------------------------------------------- /gate_level_simulation/xcelium.d/run.lnx86.22.09.d/bind.lst.lnx86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/gate_level_simulation/xcelium.d/run.lnx86.22.09.d/bind.lst.lnx86 -------------------------------------------------------------------------------- /gate_level_simulation/xcelium.d/run.lnx86.22.09.d/cds.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/gate_level_simulation/xcelium.d/run.lnx86.22.09.d/cds.lib -------------------------------------------------------------------------------- /gate_level_simulation/xcelium.d/run.lnx86.22.09.d/cdsrun.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/gate_level_simulation/xcelium.d/run.lnx86.22.09.d/cdsrun.lib -------------------------------------------------------------------------------- /gate_level_simulation/xcelium.d/run.lnx86.22.09.d/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/gate_level_simulation/xcelium.d/run.lnx86.22.09.d/files.ts -------------------------------------------------------------------------------- /gate_level_simulation/xcelium.d/run.lnx86.22.09.d/hdl.var: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/gate_level_simulation/xcelium.d/run.lnx86.22.09.d/hdl.var -------------------------------------------------------------------------------- /gate_level_simulation/xcelium.d/run.lnx86.22.09.d/hdlrun.var: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/gate_level_simulation/xcelium.d/run.lnx86.22.09.d/hdlrun.var -------------------------------------------------------------------------------- /gate_level_simulation/xcelium.d/run.lnx86.22.09.d/sjcvl-pamulasa_8469_cdsrun.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/gate_level_simulation/xcelium.d/run.lnx86.22.09.d/sjcvl-pamulasa_8469_cdsrun.lib -------------------------------------------------------------------------------- /gate_level_simulation/xcelium.d/run.lnx86.22.09.d/sjcvl-pamulasa_8469_hdlrun.var: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/gate_level_simulation/xcelium.d/run.lnx86.22.09.d/sjcvl-pamulasa_8469_hdlrun.var -------------------------------------------------------------------------------- /gate_level_simulation/xcelium.d/run.lnx86.22.09.d/xllibs/cds.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/gate_level_simulation/xcelium.d/run.lnx86.22.09.d/xllibs/cds.lib -------------------------------------------------------------------------------- /gate_level_simulation/xcelium.d/run.lnx86.22.09.d/xllibs/hdl.var: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/gate_level_simulation/xcelium.d/run.lnx86.22.09.d/xllibs/hdl.var -------------------------------------------------------------------------------- /gate_level_simulation/xcelium.d/run.lnx86.22.09.d/xllibs/slow_vdd1v0_basicCells/cdsinfo.tag: -------------------------------------------------------------------------------- 1 | CDSLIBRARY 2 | -------------------------------------------------------------------------------- /gate_level_simulation/xcelium.d/run.lnx86.22.09.d/xllibs/slow_vdd1v0_basicCells/pakvst.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gate_level_simulation/xcelium.d/run.lnx86.22.09.d/xllibs/slow_vdd1v0_basicCells/xm.lnx86.175.pak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/gate_level_simulation/xcelium.d/run.lnx86.22.09.d/xllibs/slow_vdd1v0_basicCells/xm.lnx86.175.pak -------------------------------------------------------------------------------- /gate_level_simulation/xcelium.d/run.lnx86.22.09.d/xmelab.args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/gate_level_simulation/xcelium.d/run.lnx86.22.09.d/xmelab.args -------------------------------------------------------------------------------- /gate_level_simulation/xcelium.d/run.lnx86.22.09.d/xmelab.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/gate_level_simulation/xcelium.d/run.lnx86.22.09.d/xmelab.env -------------------------------------------------------------------------------- /gate_level_simulation/xcelium.d/run.lnx86.22.09.d/xmelab.hrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/gate_level_simulation/xcelium.d/run.lnx86.22.09.d/xmelab.hrd -------------------------------------------------------------------------------- /gate_level_simulation/xcelium.d/run.lnx86.22.09.d/xmsim.args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/gate_level_simulation/xcelium.d/run.lnx86.22.09.d/xmsim.args -------------------------------------------------------------------------------- /gate_level_simulation/xcelium.d/run.lnx86.22.09.d/xmsim.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/gate_level_simulation/xcelium.d/run.lnx86.22.09.d/xmsim.env -------------------------------------------------------------------------------- /gate_level_simulation/xcelium.d/run.lnx86.22.09.d/xmsim_restart.args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/gate_level_simulation/xcelium.d/run.lnx86.22.09.d/xmsim_restart.args -------------------------------------------------------------------------------- /gate_level_simulation/xcelium.d/run.lnx86.22.09.d/xmsim_restart.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/gate_level_simulation/xcelium.d/run.lnx86.22.09.d/xmsim_restart.env -------------------------------------------------------------------------------- /gate_level_simulation/xcelium.d/run.lnx86.22.09.d/xmvlog.args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/gate_level_simulation/xcelium.d/run.lnx86.22.09.d/xmvlog.args -------------------------------------------------------------------------------- /gate_level_simulation/xcelium.d/run.lnx86.22.09.d/xmvlog.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/gate_level_simulation/xcelium.d/run.lnx86.22.09.d/xmvlog.env -------------------------------------------------------------------------------- /gate_level_simulation/xcelium.d/run.lnx86.22.09.d/xmvlog.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/gate_level_simulation/xcelium.d/run.lnx86.22.09.d/xmvlog.files -------------------------------------------------------------------------------- /gate_level_simulation/xcelium.d/run.lnx86.22.09.d/xmvlog.hrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/gate_level_simulation/xcelium.d/run.lnx86.22.09.d/xmvlog.hrd -------------------------------------------------------------------------------- /gate_level_simulation/xcelium.d/run.lnx86.22.09.d/xrun.args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/gate_level_simulation/xcelium.d/run.lnx86.22.09.d/xrun.args -------------------------------------------------------------------------------- /gate_level_simulation/xcelium.d/worklib/cdsinfo.tag: -------------------------------------------------------------------------------- 1 | CDSLIBRARY 2 | -------------------------------------------------------------------------------- /gate_level_simulation/xcelium.d/worklib/pakvst.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gate_level_simulation/xcelium.d/worklib/xm.lnx86.175.pak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/gate_level_simulation/xcelium.d/worklib/xm.lnx86.175.pak -------------------------------------------------------------------------------- /gate_level_simulation/xrun.history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/gate_level_simulation/xrun.history -------------------------------------------------------------------------------- /gate_level_simulation/xrun.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/gate_level_simulation/xrun.key -------------------------------------------------------------------------------- /gate_level_simulation/xrun.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/gate_level_simulation/xrun.log -------------------------------------------------------------------------------- /physical_design/counter.scandef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/physical_design/counter.scandef -------------------------------------------------------------------------------- /physical_design/counter.view: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/physical_design/counter.view -------------------------------------------------------------------------------- /physical_design/counter_netlist.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/physical_design/counter_netlist.v -------------------------------------------------------------------------------- /physical_design/counter_sdc.sdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/physical_design/counter_sdc.sdc -------------------------------------------------------------------------------- /physical_design/pins.io: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/physical_design/pins.io -------------------------------------------------------------------------------- /physical_design/power.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/physical_design/power.tcl -------------------------------------------------------------------------------- /physical_design/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelazeem201/Cadence-RTL-to-GDSII-Flow/HEAD/physical_design/readme --------------------------------------------------------------------------------