mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-27 02:45:52 +00:00
Merge pull request #2006 from jersey99/signed-in-rtlil-wire
Preserve 'signed'-ness of a verilog wire through RTLIL
This commit is contained in:
commit
3bffd09d64
7 changed files with 19 additions and 2 deletions
|
@ -192,6 +192,9 @@ wire_options:
|
|||
wire_options TOK_UPTO {
|
||||
current_wire->upto = true;
|
||||
} |
|
||||
wire_options TOK_SIGNED {
|
||||
current_wire->is_signed = true;
|
||||
} |
|
||||
wire_options TOK_OFFSET TOK_INT {
|
||||
current_wire->start_offset = $3;
|
||||
} |
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue