mirror of
https://github.com/YosysHQ/nextpnr.git
synced 2026-04-25 20:01:22 +00:00
ice40: Fix carry timing paths
Signed-off-by: David Shah <davey1576@gmail.com>
This commit is contained in:
@@ -494,13 +494,13 @@ bool Arch::getCellDelay(const CellInfo *cell, IdString fromPort, IdString toPort
|
||||
delay = 450;
|
||||
return true;
|
||||
}
|
||||
} else if (fromPort == id("CI") && toPort == id("CO")) {
|
||||
} else if (fromPort == id("CIN") && toPort == id("COUT")) {
|
||||
delay = 120;
|
||||
return true;
|
||||
} else if (fromPort == id("I1") && toPort == id("CO")) {
|
||||
} else if (fromPort == id("I1") && toPort == id("COUT")) {
|
||||
delay = 260;
|
||||
return true;
|
||||
} else if (fromPort == id("I2") && toPort == id("CO")) {
|
||||
} else if (fromPort == id("I2") && toPort == id("COUT")) {
|
||||
delay = 230;
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user