Mentor import done.

This commit is contained in:
2025-04-21 18:19:37 +02:00
parent 6448972fd8
commit d0bf09aa63
14 changed files with 238 additions and 56 deletions

View File

@@ -3,8 +3,9 @@
using namespace std;
int main() {
System sys = System();
System *sys = new System();
string ment_filename = "/home/francois/Projets/twinsys/test/BPB-2177_Netlist_2_3.qcv";
sys.Load("bpb", ment_filename, ImportType::IMPORT_MENTOR);
sys->Load("bpb", ment_filename, ImportType::IMPORT_MENTOR);
delete sys;
};