diff options
author | gatecat <gatecat@ds0.me> | 2022-02-24 11:13:39 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-24 11:13:39 +0000 |
commit | 33ca747b1f5ed7cd2ed6f79c8cb69f0bef31e19b (patch) | |
tree | a566dc9ecf476aa9a75f1acebada447a8e03435d | |
parent | 440d7e394e5643a59dbd5a4b7af47a1c8902d7a0 (diff) | |
parent | 3894a36ddbbaf30494b77f0f108cfa359886807a (diff) | |
download | nextpnr-33ca747b1f5ed7cd2ed6f79c8cb69f0bef31e19b.tar.gz nextpnr-33ca747b1f5ed7cd2ed6f79c8cb69f0bef31e19b.tar.bz2 nextpnr-33ca747b1f5ed7cd2ed6f79c8cb69f0bef31e19b.zip |
Merge pull request #923 from yrabbit/partnumber-re
gowin: recognize partnumbers of GW1NZ-1
-rw-r--r-- | gowin/main.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gowin/main.cc b/gowin/main.cc index 38a67fcd..1473f3e8 100644 --- a/gowin/main.cc +++ b/gowin/main.cc @@ -55,7 +55,7 @@ po::options_description GowinCommandHandler::getArchOptions() std::unique_ptr<Context> GowinCommandHandler::createContext(dict<std::string, Property> &values) { - std::regex devicere = std::regex("GW1N(S?)[A-Z]*-(LV|UV|UX)([0-9])(C?).*"); + std::regex devicere = std::regex("GW1N([SZ]?)[A-Z]*-(LV|UV|UX)([0-9])(C?).*"); std::smatch match; std::string device = vm["device"].as<std::string>(); if (!std::regex_match(device, match, devicere)) { |