diff options
author | Miodrag Milanovic <mmicko@gmail.com> | 2018-06-24 14:38:45 +0200 |
---|---|---|
committer | Miodrag Milanovic <mmicko@gmail.com> | 2018-06-24 14:38:45 +0200 |
commit | 1acaf4127745354e83fb230bd3f965c562bb2f9b (patch) | |
tree | 780d05bb6b0e05991676992a0fbe54649873b78e /dummy/arch.h | |
parent | 0cedb7276f94167fe758c9f1a241f33cb21cfafc (diff) | |
download | nextpnr-1acaf4127745354e83fb230bd3f965c562bb2f9b.tar.gz nextpnr-1acaf4127745354e83fb230bd3f965c562bb2f9b.tar.bz2 nextpnr-1acaf4127745354e83fb230bd3f965c562bb2f9b.zip |
added project saving and loading
Diffstat (limited to 'dummy/arch.h')
-rw-r--r-- | dummy/arch.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/dummy/arch.h b/dummy/arch.h index 56d90d52..58636ed9 100644 --- a/dummy/arch.h +++ b/dummy/arch.h @@ -79,6 +79,9 @@ struct Arch : BaseCtx virtual IdString id(const std::string &s) const { abort(); } virtual IdString id(const char *s) const { abort(); } + IdString archId() const { return id("dummy"); } + IdString archArgsToId(ArchArgs args) const { return id("none"); } + IdString belTypeToId(BelType type) const { return type; } IdString portPinToId(PortPin type) const { return type; } |