mirror of
https://github.com/YosysHQ/nextpnr.git
synced 2026-08-22 14:17:29 +02:00
+4
-4
@@ -495,10 +495,10 @@ bool Arch::getCellDelay(const CellInfo *cell, IdString fromPort, IdString toPort
|
||||
} else if (cell->type == id_DCC) {
|
||||
if (fromPort == id_CLKI && toPort == id_CLKO) {
|
||||
// TODO: Use actual DCC delays
|
||||
delay.rise.min_delay = 1000;
|
||||
delay.rise.max_delay = 1000;
|
||||
delay.fall.min_delay = 1000;
|
||||
delay.fall.max_delay = 1000;
|
||||
delay.rise.min_delay = 1;
|
||||
delay.rise.max_delay = 1;
|
||||
delay.fall.min_delay = 1;
|
||||
delay.fall.max_delay = 1;
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user