aboutsummaryrefslogtreecommitdiffstats
path: root/dummy/arch.h
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2018-06-18 15:53:18 +0200
committerClifford Wolf <clifford@clifford.at>2018-06-18 15:53:18 +0200
commit0dd185a14149216a1ef5fa8fcf49f510e68583d2 (patch)
tree4f06d09c1e26151e35d72147bf8398690671e827 /dummy/arch.h
parent71d07fd0bf0352608f62a4a4e1aef3826beef0cc (diff)
downloadnextpnr-0dd185a14149216a1ef5fa8fcf49f510e68583d2.tar.gz
nextpnr-0dd185a14149216a1ef5fa8fcf49f510e68583d2.tar.bz2
nextpnr-0dd185a14149216a1ef5fa8fcf49f510e68583d2.zip
Getting rid of users of old IdString API
Signed-off-by: Clifford Wolf <clifford@clifford.at>
Diffstat (limited to 'dummy/arch.h')
-rw-r--r--dummy/arch.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/dummy/arch.h b/dummy/arch.h
index 40aceff2..9bd09f9d 100644
--- a/dummy/arch.h
+++ b/dummy/arch.h
@@ -73,6 +73,9 @@ struct Arch
std::string getChipName();
+ virtual IdString id(const std::string &s) const { abort(); }
+ virtual IdString id(const char *s) const { abort(); }
+
BelId getBelByName(IdString name) const;
IdString getBelName(BelId bel) const;
void bindBel(BelId bel, IdString cell);