aboutsummaryrefslogtreecommitdiffstats
path: root/ecp5
diff options
context:
space:
mode:
authorMiodrag Milanović <mmicko@gmail.com>2018-08-04 04:05:38 -0700
committerGitHub <noreply@github.com>2018-08-04 04:05:38 -0700
commitdc34d4c9ed11e034bf9f81c02365496658f36517 (patch)
tree4cfb053ffccefe134d1ef84ecb5bce972fa0d167 /ecp5
parentf5a1b93f0e9348437ece7fb7d46ac69af98536d0 (diff)
parent0cb349b60ea17378a4c163f0c8b12e8b17988cee (diff)
downloadnextpnr-dc34d4c9ed11e034bf9f81c02365496658f36517.tar.gz
nextpnr-dc34d4c9ed11e034bf9f81c02365496658f36517.tar.bz2
nextpnr-dc34d4c9ed11e034bf9f81c02365496658f36517.zip
Merge pull request #33 from YosysHQ/gui-ecp5
Gui ecp5
Diffstat (limited to 'ecp5')
-rw-r--r--ecp5/arch.h2
-rw-r--r--ecp5/main.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/ecp5/arch.h b/ecp5/arch.h
index cd103b12..6daf543d 100644
--- a/ecp5/arch.h
+++ b/ecp5/arch.h
@@ -384,7 +384,7 @@ struct PipRange
struct ArchArgs
{
- enum
+ enum ArchArgsTypes
{
NONE,
LFE5U_25F,
diff --git a/ecp5/main.cc b/ecp5/main.cc
index dac7a635..dde3ffed 100644
--- a/ecp5/main.cc
+++ b/ecp5/main.cc
@@ -148,7 +148,7 @@ int main(int argc, char *argv[])
#ifndef NO_GUI
if (vm.count("gui")) {
Application a(argc, argv);
- MainWindow w(std::move(ctx));
+ MainWindow w(std::move(ctx),args);
w.show();
return a.exec();