json: Parse inout correctly rather than as an output

This commit is contained in:
Robert Ou 2017-08-07 13:37:01 -07:00 committed by Andrew Zonenberg
parent 007f29b9c2
commit 366ce87cff
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());