aboutsummaryrefslogtreecommitdiffstats
path: root/ice40
diff options
context:
space:
mode:
Diffstat (limited to 'ice40')
-rw-r--r--ice40/chip.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/ice40/chip.h b/ice40/chip.h
index 21f8a7dc..397e2bf3 100644
--- a/ice40/chip.h
+++ b/ice40/chip.h
@@ -22,6 +22,14 @@
#ifndef CHIP_H
#define CHIP_H
+struct DelayInfo
+{
+ float delay = 0;
+
+ float raiseDelay() { return delay; }
+ float fallDelay() { return delay; }
+};
+
// -----------------------------------------------------------------------
enum BelType
@@ -175,7 +183,7 @@ struct AllWiresRange
struct WireDelay
{
WireId wire;
- float delay;
+ DelayInfo delay;
};
struct WireDelayIterator
@@ -188,7 +196,7 @@ struct WireDelayIterator
WireDelay operator*() const {
WireDelay ret;
ret.wire.index = ptr->wire_index;
- ret.delay = ptr->delay;
+ ret.delay.delay = ptr->delay;
return ret;
}
};