1
0
mirror of https://github.com/YosysHQ/nextpnr.git synced 2026-04-26 20:26:32 +00:00

Adjusted info message names for rule-checker and parser

This commit is contained in:
ZipCPU
2018-06-07 12:04:01 -04:00
parent 37d2fc65b1
commit a4f687548e
2 changed files with 4 additions and 3 deletions

View File

@@ -34,7 +34,7 @@ extern bool check_all_nets_driven(Design *design);
namespace JsonParser {
const bool json_debug = true;
const bool json_debug = false;
typedef std::string string;
@@ -645,7 +645,7 @@ void json_import(Design *design, string modname, JsonNode *node) {
if (is_blackbox(node))
return;
log_info("Importing modname = %s\n", modname.c_str());
log_info("Importing module %s\n", modname.c_str());
if (node->data_dict.count("cells")) {
JsonNode *cell_parent = node->data_dict.at("cells");