diff options
Diffstat (limited to 'ecp5/main.cc')
-rw-r--r-- | ecp5/main.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ecp5/main.cc b/ecp5/main.cc index c07e08de..c16e23bb 100644 --- a/ecp5/main.cc +++ b/ecp5/main.cc @@ -31,6 +31,9 @@ #include <boost/program_options.hpp> #include <fstream> #include <iostream> + +#include "Database.hpp" + #include "log.h" #include "nextpnr.h" #include "version.h" @@ -99,6 +102,9 @@ int main(int argc, char *argv[]) "sha1 " GIT_COMMIT_HASH_STR ")\n"; return 1; } + + Trellis::load_database(TRELLIS_ROOT"/database"); + ArchArgs args; args.type = ArchArgs::LFE5U_25F; args.package = "CABGA381"; |