05-13-2007, 05:43 PM
And after these calculations macro generates code like
lef 100 100
lef 200 200
...
?
Better save these positions to an array, and then use it with app2:
ARRAY(POINT) a
;here is code to poupulate the array (instead of code to generate the macro code)
...
;then follows code for app2
lef a[0].x a[0].y
lef a[1].x a[1].y
...
lef 100 100
lef 200 200
...
?
Better save these positions to an array, and then use it with app2:
ARRAY(POINT) a
;here is code to poupulate the array (instead of code to generate the macro code)
...
;then follows code for app2
lef a[0].x a[0].y
lef a[1].x a[1].y
...