diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-06-21 17:44:21 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-06-21 17:44:21 -0700 |
commit | 6c2cb519965ac9b4057a90cd46f474c092967be2 (patch) | |
tree | 45f545af7700a244f64a0e42f96fae37df9f2914 /backends/json/json.cc | |
parent | 301e065aeee2d6a4b5009ebdc50028bafd3aac5d (diff) | |
parent | 1abe93e48d8bb78cd0753d46dfbe1885a1e803eb (diff) | |
download | yosys-6c2cb519965ac9b4057a90cd46f474c092967be2.tar.gz yosys-6c2cb519965ac9b4057a90cd46f474c092967be2.tar.bz2 yosys-6c2cb519965ac9b4057a90cd46f474c092967be2.zip |
Merge remote-tracking branch 'origin/xaig' into xc7mux
Diffstat (limited to 'backends/json/json.cc')
-rw-r--r-- | backends/json/json.cc | 4 |
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"); |