aboutsummaryrefslogtreecommitdiffstats
path: root/dummy
diff options
context:
space:
mode:
Diffstat (limited to 'dummy')
-rw-r--r--dummy/chip.cc11
1 files changed, 11 insertions, 0 deletions
diff --git a/dummy/chip.cc b/dummy/chip.cc
index 642984ca..51246344 100644
--- a/dummy/chip.cc
+++ b/dummy/chip.cc
@@ -20,3 +20,14 @@
#include "chip.h"
Chip::Chip(ChipArgs) {}
+
+const vector<BelId> &Chip::getBels() const
+{
+ static vector<BelId> ret;
+ return ret;
+}
+
+BelType Chip::getBelType(BelId bel) const
+{
+ return BelType();
+}