aboutsummaryrefslogtreecommitdiffstats
path: root/machxo2/archdefs.h
diff options
context:
space:
mode:
Diffstat (limited to 'machxo2/archdefs.h')
-rw-r--r--machxo2/archdefs.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/machxo2/archdefs.h b/machxo2/archdefs.h
index 844a87b6..f822b907 100644
--- a/machxo2/archdefs.h
+++ b/machxo2/archdefs.h
@@ -26,27 +26,6 @@ NEXTPNR_NAMESPACE_BEGIN
typedef float delay_t;
-struct DelayInfo
-{
- delay_t delay = 0;
-
- delay_t minRaiseDelay() const { return delay; }
- delay_t maxRaiseDelay() const { return delay; }
-
- delay_t minFallDelay() const { return delay; }
- delay_t maxFallDelay() const { return delay; }
-
- delay_t minDelay() const { return delay; }
- delay_t maxDelay() const { return delay; }
-
- DelayInfo operator+(const DelayInfo &other) const
- {
- DelayInfo ret;
- ret.delay = this->delay + other.delay;
- return ret;
- }
-};
-
enum ConstIds
{
ID_NONE