* sea/src/DEF_actions.c :

- It seems that the new DEF format (rev. 5.4) no longer repeats the
       default VIAs. So we have to load them by hand directly inside the
       parser.

 * sea/src/util_Floorplan.c :
   - Uses "aluX" instead of "l_aluX" for SE grid references.
This commit is contained in:
Jean-Paul Chaput 2006-06-28 13:25:07 +00:00
parent ac7eb8d289
commit 785e1164c9
2 changed files with 11 additions and 5 deletions

View File

@ -1,6 +1,6 @@
/*
* $Id: DEF_actions.c,v 1.4 2004/09/29 21:40:46 jpc Exp $
* $Id: DEF_actions.c,v 1.5 2006/06/28 13:25:06 jpc Exp $
*
* /----------------------------------------------------------------\
* | |
@ -1622,6 +1622,12 @@ static void LEF2MBK_setData()
setDataCut (6, "VIA6", CONT_VIA6);
setDataCut (7, "VIA7", CONT_VIA7);
setDataCut (8, "VIA8", CONT_VIA8);
addDataVIA ("CONT_VIA" , CONT_VIA , 0, 0);
addDataVIA ("CONT_VIA2", CONT_VIA2, 0, 0);
addDataVIA ("CONT_VIA3", CONT_VIA3, 0, 0);
addDataVIA ("CONT_VIA4", CONT_VIA4, 0, 0);
addDataVIA ("CONT_VIA5", CONT_VIA5, 0, 0);
}

View File

@ -1,5 +1,5 @@
/*
* $Id: util_Floorplan.c,v 1.2 2002/09/30 16:21:18 czo Exp $
* $Id: util_Floorplan.c,v 1.3 2006/06/28 13:25:07 jpc Exp $
*
* /----------------------------------------------------------------\
* | |
@ -81,11 +81,11 @@
* Local variables.
*/
static char routingLayers3[256] = "l_alu1.l_alu2.l_alu3.";
static char routingLayers3[256] = "alu1.alu2.alu3.";
static char routingLayers4[256] =
"l_alu1.l_alu2.l_alu3.l_alu4.";
"alu1.alu2.alu3.alu4.";
static char routingLayers6[256] =
"l_alu1.l_alu2.l_alu3.l_alu4.l_alu5.l_alu6.";
"alu1.alu2.alu3.alu4.alu5.alu6.";
static long LV_dupTerm;
static long LV_loTerm;