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
commit 76efbcc15f
1 changed files with 1 additions and 0 deletions

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