aboutsummaryrefslogtreecommitdiffstats
path: root/backends/json/json.cc
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-06-24 20:01:43 -0700
committerEddie Hung <eddie@fpgeh.com>2019-06-24 20:01:43 -0700
commitcec2292b0bac819568c3d982e544cbe0aff99cb8 (patch)
tree9d20dd6ba7c36b8b69dbf2b571860fed46d13f55 /backends/json/json.cc
parent6027549464bf91cee4d4bcbe9586e719dce78c80 (diff)
parente32cef4063316e4f12030841a0682abbb948e20b (diff)
downloadyosys-cec2292b0bac819568c3d982e544cbe0aff99cb8.tar.gz
yosys-cec2292b0bac819568c3d982e544cbe0aff99cb8.tar.bz2
yosys-cec2292b0bac819568c3d982e544cbe0aff99cb8.zip
Merge remote-tracking branch 'origin/master' into xaig
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;