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

@ -5,7 +5,8 @@
bool check_all_nets_driven(Design *design) {
const bool debug = false;
log_info("Verifying all cells\n");
log_info("Rule checker, Verifying pre-placed design\n");
for(auto cell_entry : design->cells) {
CellInfo *cell = cell_entry.second;

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");