aboutsummaryrefslogtreecommitdiffstats
path: root/frontends/json/jsonparse.cc
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2019-06-24 08:52:12 +0200
committerGitHub <noreply@github.com>2019-06-24 08:52:12 +0200
commite32cef4063316e4f12030841a0682abbb948e20b (patch)
tree9fcca15ddc270291348d5e99f05b3dd3452fa0fc /frontends/json/jsonparse.cc
parentfb8fab4a29e5a3978cadf2b1bd8920b772150028 (diff)
parentfde90f7f8eb4150c7f806ab4baa53057a56bc160 (diff)
downloadyosys-e32cef4063316e4f12030841a0682abbb948e20b.tar.gz
yosys-e32cef4063316e4f12030841a0682abbb948e20b.tar.bz2
yosys-e32cef4063316e4f12030841a0682abbb948e20b.zip
Merge pull request #1124 from mmicko/json_ports
Add upto and offset to JSON ports
Diffstat (limited to 'frontends/json/jsonparse.cc')
-rw-r--r--frontends/json/jsonparse.cc12
1 files changed, 12 insertions, 0 deletions
diff --git a/frontends/json/jsonparse.cc b/frontends/json/jsonparse.cc
index b74d41dd2..f5ae8eb72 100644
--- a/frontends/json/jsonparse.cc
+++ b/frontends/json/jsonparse.cc
@@ -292,6 +292,18 @@ void json_import(Design *design, string &modname, JsonNode *node)
if (port_wire == nullptr)
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") {
port_wire->port_input = true;
} else