aboutsummaryrefslogtreecommitdiffstats
path: root/backends/json/json.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 /backends/json/json.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 'backends/json/json.cc')
-rw-r--r--backends/json/json.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/backends/json/json.cc b/backends/json/json.cc
index 1781a28cd..dda4dfedd 100644
--- a/backends/json/json.cc
+++ b/backends/json/json.cc
@@ -126,6 +126,10 @@ struct JsonWriter
f << stringf("%s\n", first ? "" : ",");
f << stringf(" %s: {\n", get_name(n).c_str());
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(" }");
first = false;