This commit is contained in:
Miodrag Milanovic 2019-06-21 19:09:34 +02:00
parent 6d74cf0d2b
commit 3775763f51
1 changed files with 1 additions and 1 deletions

View File

@ -373,7 +373,7 @@ void json_import(Design *design, string &modname, JsonNode *node)
wire = module->addWire(net_name, GetSize(bits_node->data_array));
if (net_node->data_dict.count("upto") != 0) {
JsonNode *val = net_node->data_dict.at("offset");
JsonNode *val = net_node->data_dict.at("upto");
if (val->type == 'N')
wire->upto = val->data_number != 0;
}