Allow delay of 0, as requested by Infineon model of the 2EDNY52X
This commit is contained in:
parent
35a7e49ac8
commit
7f0dc4b39f
|
|
@ -563,8 +563,8 @@ static void EVTprocess_output(
|
||||||
|
|
||||||
if (g_mif_info.circuit.anal_type == MIF_TRAN) {
|
if (g_mif_info.circuit.anal_type == MIF_TRAN) {
|
||||||
delay = port->delay;
|
delay = port->delay;
|
||||||
if(delay <= 0.0) {
|
if(delay < 0.0) {
|
||||||
printf("\nERROR - Output delay <= 0 not allowed - output ignored!\n");
|
printf("\nERROR - Output delay < 0 not allowed - output ignored!\n");
|
||||||
printf(" Instance: %s\n Node: %s\n Time: %f \n",
|
printf(" Instance: %s\n Node: %s\n Time: %f \n",
|
||||||
g_mif_info.instance->MIFname, node_table[node_index]->name,
|
g_mif_info.instance->MIFname, node_table[node_index]->name,
|
||||||
g_mif_info.ckt->CKTtime);
|
g_mif_info.ckt->CKTtime);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue