1
0
mirror of synced 2026-01-31 06:02:11 +00:00

Merge pull request #382 from azonenberg/jsoniofix

json: Parse inout correctly rather than as an output
This commit is contained in:
Clifford Wolf
2017-08-14 21:45:54 +02:00
committed by GitHub

View File

@@ -271,6 +271,7 @@ void json_import(Design *design, string &modname, JsonNode *node)
port_wire->port_output = true;
} else
if (port_direction_node->data_string == "inout") {
port_wire->port_input = true;
port_wire->port_output = true;
} else
log_error("JSON port node '%s' has invalid '%s' direction attribute.\n", log_id(port_name), port_direction_node->data_string.c_str());