The ASM2500 Windows is usually executed from the GUI but in some cases, customers
wants to run the software from a batch file.
dxf2pg Command Line SyntaxHere is a sample batch file...C:\wcad\DXF2PG\d2pgxeng.exe C:\junk\support\2500_pg\3409.dxf -gds C:\junk\support\2500_pg\3409.vu -cfg:C:\junk\support\2500_pg\PG.CFG -link -c:0.000000 C:\wcad\DXF2PG\gscan.exe C:\junk\support\2500_pg\3409.vu -sea -sh -o:3409.ssn C:\wcad\DXF2PG\d2pgeng.exe C:\junk\support\2500_pg\3409.vu 3.000000 0 3409 -s1.000000 -relax -polycnt:100000 C:\wcad\DXF2PG\emask -cs:3409.txt -d: -p dxf2pg Command Line Description
C:\wcad\DXF2PG\d2pgxeng.exe C:\junk\support\2500_pg\3409.dxf -gds C:\junk\support\2500_pg\3409.vu -cfg:C:\junk\support\2500_pg\PG.CFG -link -c:0.000000 This command convert the DXF file to our internal format file (.vu file). The pattern generator config file must be present on the command line as well. C:\wcad\DXF2PG\gscan.exe C:\junk\support\2500_pg\3409.vu -sea -sh -o:3409.ssn This command scans the .vu file and creates a scan file (.ssn) with the DXF layer names, cell names, and their extents. C:\wcad\DXF2PG\d2pgeng.exe C:\junk\support\2500_pg\3409.vu 3.000000 0 3409 -s1.000000 -relax -polycnt:100000 This command convert the .vu file to pattern generator format. The exact command line is.. d2pgeng.exe input_file.vu feature_size layers top_cell options... C:\wcad\DXF2PG\emask -cs:3409.txt -d: -p This command converts the intermediate file to Electromask file format. It takes the parameters from a text file. Here is what is in the text file.. READ 340900.INT UNITS UM SCALE 1 MOVE 75000,100000 OPEN 340900.EM GENERATE CLOSE QUIT In this example, emask reads the intermediate file, it sets the units (microns) and scale (1), it then moves the data by 75000,100000 microns and generates the output electromask file. |