aboutsummaryrefslogtreecommitdiffstats
path: root/backends/json
diff options
context:
space:
mode:
authorMiodrag Milanovic <mmicko@gmail.com>2019-06-21 19:47:25 +0200
committerMiodrag Milanovic <mmicko@gmail.com>2019-06-21 19:47:25 +0200
commit50e72210772f3a1c34f5fe80b19c65f6d304b71a (patch)
tree212cf3f018ae88c7a1b3d288666b9a94d62435c9 /backends/json
parente66481497155edd8af855df268befeabe3e87f7e (diff)
downloadyosys-50e72210772f3a1c34f5fe80b19c65f6d304b71a.tar.gz
yosys-50e72210772f3a1c34f5fe80b19c65f6d304b71a.tar.bz2
yosys-50e72210772f3a1c34f5fe80b19c65f6d304b71a.zip
Add upto and offset to JSON ports
Diffstat (limited to 'backends/json')
-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..eb59e5eba 100644
--- a/backends/json/json.cc
+++ b/backends/json/json.cc
@@ -127,6 +127,10 @@ struct JsonWriter
f << stringf(" %s: {\n", get_name(n).c_str());
f << stringf(" \"direction\": \"%s\",\n", w->port_input ? w->port_output ? "inout" : "input" : "output");
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(" }");
first = false;
}