mirror of https://github.com/YosysHQ/yosys.git
Merge pull request #1124 from mmicko/json_ports
Add upto and offset to JSON ports
This commit is contained in:
commit
e32cef4063
|
@ -126,6 +126,10 @@ struct JsonWriter
|
||||||
f << stringf("%s\n", first ? "" : ",");
|
f << stringf("%s\n", first ? "" : ",");
|
||||||
f << stringf(" %s: {\n", get_name(n).c_str());
|
f << stringf(" %s: {\n", get_name(n).c_str());
|
||||||
f << stringf(" \"direction\": \"%s\",\n", w->port_input ? w->port_output ? "inout" : "input" : "output");
|
f << stringf(" \"direction\": \"%s\",\n", w->port_input ? w->port_output ? "inout" : "input" : "output");
|
||||||
|
if (w->start_offset)
|
||||||
|
f << stringf(" \"offset\": %d,\n", w->start_offset);
|
||||||
|
if (w->upto)
|
||||||
|
f << stringf(" \"upto\": 1,\n");
|
||||||
f << stringf(" \"bits\": %s\n", get_bits(w).c_str());
|
f << stringf(" \"bits\": %s\n", get_bits(w).c_str());
|
||||||
f << stringf(" }");
|
f << stringf(" }");
|
||||||
first = false;
|
first = false;
|
||||||
|
|
|
@ -292,6 +292,18 @@ void json_import(Design *design, string &modname, JsonNode *node)
|
||||||
if (port_wire == nullptr)
|
if (port_wire == nullptr)
|
||||||
port_wire = module->addWire(port_name, GetSize(port_bits_node->data_array));
|
port_wire = module->addWire(port_name, GetSize(port_bits_node->data_array));
|
||||||
|
|
||||||
|
if (port_node->data_dict.count("upto") != 0) {
|
||||||
|
JsonNode *val = port_node->data_dict.at("upto");
|
||||||
|
if (val->type == 'N')
|
||||||
|
port_wire->upto = val->data_number != 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (port_node->data_dict.count("offset") != 0) {
|
||||||
|
JsonNode *val = port_node->data_dict.at("offset");
|
||||||
|
if (val->type == 'N')
|
||||||
|
port_wire->start_offset = val->data_number;
|
||||||
|
}
|
||||||
|
|
||||||
if (port_direction_node->data_string == "input") {
|
if (port_direction_node->data_string == "input") {
|
||||||
port_wire->port_input = true;
|
port_wire->port_input = true;
|
||||||
} else
|
} else
|
||||||
|
|
Loading…
Reference in New Issue