mirror of https://github.com/YosysHQ/nextpnr.git
[xc7] Also ignore PIN token lines for PCF
This commit is contained in:
parent
1ee041e63f
commit
e53f8364ec
|
|
@ -68,6 +68,8 @@ bool apply_pcf(Context *ctx, std::string filename, std::istream &in)
|
||||||
}
|
}
|
||||||
} else if (cmd == "NET") {
|
} else if (cmd == "NET") {
|
||||||
// TODO
|
// TODO
|
||||||
|
} else if (cmd == "PIN") {
|
||||||
|
// TODO
|
||||||
} else {
|
} else {
|
||||||
log_error("unsupported pcf command '%s'\n", cmd.c_str());
|
log_error("unsupported pcf command '%s'\n", cmd.c_str());
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue