From a48d742c636749df3e454079ebb889a231707fd3 Mon Sep 17 00:00:00 2001 From: Pepijn de Vos Date: Mon, 21 Dec 2020 10:44:09 +0100 Subject: [PATCH] remove generic reference --- gowin/arch.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gowin/arch.cc b/gowin/arch.cc index 41f07d71..727ed0af 100644 --- a/gowin/arch.cc +++ b/gowin/arch.cc @@ -1052,7 +1052,7 @@ bool Arch::place() archInfoToAttributes(); return retVal; } else { - log_error("Generic architecture does not support placer '%s'\n", placer.c_str()); + log_error("Gowin architecture does not support placer '%s'\n", placer.c_str()); } } @@ -1066,7 +1066,7 @@ bool Arch::route() router2(getCtx(), Router2Cfg(getCtx())); result = true; } else { - log_error("iCE40 architecture does not support router '%s'\n", router.c_str()); + log_error("Gowin architecture does not support router '%s'\n", router.c_str()); } getCtx()->settings[getCtx()->id("route")] = 1; archInfoToAttributes();