aboutsummaryrefslogtreecommitdiffstats
path: root/backends
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-06-22 14:40:55 -0700
committerEddie Hung <eddie@fpgeh.com>2019-06-22 14:40:55 -0700
commit4ddc0354c1cc61f2e2b3f15cc341fd277c710e89 (patch)
treee93f687e469eb7f2f97bf79d113f03a66c878698 /backends
parent545cfbbe0dcc36f18dce6429498f4d87112879e2 (diff)
parentfb8fab4a29e5a3978cadf2b1bd8920b772150028 (diff)
downloadyosys-4ddc0354c1cc61f2e2b3f15cc341fd277c710e89.tar.gz
yosys-4ddc0354c1cc61f2e2b3f15cc341fd277c710e89.tar.bz2
yosys-4ddc0354c1cc61f2e2b3f15cc341fd277c710e89.zip
Merge remote-tracking branch 'origin/master' into eddie/muxpack
Diffstat (limited to 'backends')
-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 5022d5da1..1781a28cd 100644
--- a/backends/json/json.cc
+++ b/backends/json/json.cc
@@ -189,6 +189,10 @@ struct JsonWriter
f << stringf(" %s: {\n", get_name(w->name).c_str());
f << stringf(" \"hide_name\": %s,\n", w->name[0] == '$' ? "1" : "0");
f << stringf(" \"bits\": %s,\n", get_bits(w).c_str());
+ if (w->start_offset)
+ f << stringf(" \"offset\": %d,\n", w->start_offset);
+ if (w->upto)
+ f << stringf(" \"upto\": 1,\n");
f << stringf(" \"attributes\": {");
write_parameters(w->attributes);
f << stringf("\n }\n");