From f67cf32d0d389d262204939d74c722811ecee0d8 Mon Sep 17 00:00:00 2001 From: Eddie Hung Date: Sun, 4 Nov 2018 22:14:10 -0800 Subject: [PATCH] [xc7] PCF reader to ignore lines with NET token --- xc7/pcf.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/xc7/pcf.cc b/xc7/pcf.cc index 7327b252..f82a21ab 100644 --- a/xc7/pcf.cc +++ b/xc7/pcf.cc @@ -66,6 +66,8 @@ bool apply_pcf(Context *ctx, std::string filename, std::istream &in) log_info("constrained '%s' to bel '%s'\n", cell.c_str(), fnd_cell->second->attrs[ctx->id("BEL")].c_str()); } + } else if (cmd == "NET") { + // TODO } else { log_error("unsupported pcf command '%s'\n", cmd.c_str()); }