aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYRabbit <rabbit@yrabbit.cyou>2022-02-24 13:35:22 +1000
committerYRabbit <rabbit@yrabbit.cyou>2022-02-24 13:35:22 +1000
commit3894a36ddbbaf30494b77f0f108cfa359886807a (patch)
treea566dc9ecf476aa9a75f1acebada447a8e03435d
parent440d7e394e5643a59dbd5a4b7af47a1c8902d7a0 (diff)
downloadnextpnr-3894a36ddbbaf30494b77f0f108cfa359886807a.tar.gz
nextpnr-3894a36ddbbaf30494b77f0f108cfa359886807a.tar.bz2
nextpnr-3894a36ddbbaf30494b77f0f108cfa359886807a.zip
gowin: recognize partnumbers of GW1NZ-1
The model should be recognized by the partnumber, --family is needed only if the same partnumbers belong to different models. This is done in order to automatically generate parameters for calling nextpnr from Gowin files without problems: there also only partnumber is used and only in some cases the model is specified with the -name parameter and GW1NZ-1 is not such a case. Signed-off-by: YRabbit <rabbit@yrabbit.cyou>
-rw-r--r--gowin/main.cc2
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)) {