diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-07-28 12:12:13 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-07-28 12:12:13 +0200 |
commit | 3c45277ee0f5822181c6058f679de632f834e7d2 (patch) | |
tree | 7bdf9f8d7a57a3744dc8d869343c710ca1055f1c /kernel/rtlil.h | |
parent | 7bd2d1064f2eceddc3c93c121c4154a2f594a040 (diff) | |
download | yosys-3c45277ee0f5822181c6058f679de632f834e7d2.tar.gz yosys-3c45277ee0f5822181c6058f679de632f834e7d2.tar.bz2 yosys-3c45277ee0f5822181c6058f679de632f834e7d2.zip |
Added wire->upto flag for signals such as "wire [0:7] x;"
Diffstat (limited to 'kernel/rtlil.h')
-rw-r--r-- | kernel/rtlil.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/rtlil.h b/kernel/rtlil.h index d78a6df22..097af9d28 100644 --- a/kernel/rtlil.h +++ b/kernel/rtlil.h @@ -602,7 +602,7 @@ public: RTLIL::IdString name; int width, start_offset, port_id; - bool port_input, port_output; + bool port_input, port_output, upto; RTLIL_ATTRIBUTE_MEMBERS }; |