diff options
author | Miodrag Milanovic <mmicko@gmail.com> | 2019-06-21 20:01:40 +0200 |
---|---|---|
committer | Miodrag Milanovic <mmicko@gmail.com> | 2019-06-21 20:01:40 +0200 |
commit | fde90f7f8eb4150c7f806ab4baa53057a56bc160 (patch) | |
tree | 6c7f0a29ffe317ed1949af86017e4e3e3634fe45 | |
parent | 50e72210772f3a1c34f5fe80b19c65f6d304b71a (diff) | |
download | yosys-fde90f7f8eb4150c7f806ab4baa53057a56bc160.tar.gz yosys-fde90f7f8eb4150c7f806ab4baa53057a56bc160.tar.bz2 yosys-fde90f7f8eb4150c7f806ab4baa53057a56bc160.zip |
Fix json formatting
-rw-r--r-- | backends/json/json.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/json/json.cc b/backends/json/json.cc index eb59e5eba..dda4dfedd 100644 --- a/backends/json/json.cc +++ b/backends/json/json.cc @@ -126,11 +126,11 @@ 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"); - 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(" \"bits\": %s\n", get_bits(w).c_str()); f << stringf(" }"); first = false; } |