Code cleanup

Signed-off-by: Maciej Kurc <[email protected]>
This commit is contained in:
Maciej Kurc
2022-08-31 16:19:15 +02:00
parent 60a6e8b070
commit 1f1bae3e23
2 changed files with 37 additions and 66 deletions
+4 -4
View File
@@ -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;
}
}