mirror of
https://github.com/RTimothyEdwards/magic.git
synced 2026-08-22 14:17:43 +02:00
Modified "gds flatglob" to have the value "*_CDNS_*" by default,
since this is a common artifact of foundry cells and almost always incompatible with magic. Modified the "port" command to allow "port make <index>" on a label where other labels of the same text already have the same index. Removed deprecated documentation and added some missing documentation, such as an explanation of the "ext2spice subcircuit auto" option.
This commit is contained in:
+9
-5
@@ -2176,11 +2176,15 @@ parseindex:
|
||||
{
|
||||
if ((int)sl->lab_port == idx)
|
||||
{
|
||||
TxError("Port index %d is already used by port %s.\n"
|
||||
"Use command \"port index %d\" to force "
|
||||
"equivalence after defining the port.\n",
|
||||
idx, sl->lab_text, idx);
|
||||
return;
|
||||
/* This is only an error if port name doesn't match */
|
||||
if (strcmp(sl->lab_text, lab->lab_text))
|
||||
{
|
||||
TxError("Port index %d is already used by port %s.\n"
|
||||
"Use command \"port index %d\" to force "
|
||||
"equivalence after defining the port.\n",
|
||||
idx, sl->lab_text, idx);
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user