ice40: Add timing paths for carry
Signed-off-by: David Shah <davey1576@gmail.com>
This commit is contained in:
parent
b0b16a344a
commit
53ce81343a
@ -494,6 +494,15 @@ bool Arch::getCellDelay(const CellInfo *cell, IdString fromPort, IdString toPort
|
|||||||
delay = 450;
|
delay = 450;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
} else if (fromPort == id("CI") && toPort == id("CO")) {
|
||||||
|
delay = 120;
|
||||||
|
return true;
|
||||||
|
} else if (fromPort == id("I1") && toPort == id("CO")) {
|
||||||
|
delay = 260;
|
||||||
|
return true;
|
||||||
|
} else if (fromPort == id("I2") && toPort == id("CO")) {
|
||||||
|
delay = 230;
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
Reference in New Issue
Block a user