mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-15 23:35:28 +00:00
fixed parsing of constant with comment between size and value
This commit is contained in:
parent
1c81ab49e7
commit
ee8ad72fd9
2 changed files with 14 additions and 0 deletions
|
@ -235,3 +235,10 @@ always @* begin
|
|||
end
|
||||
|
||||
endmodule
|
||||
|
||||
`define SIZE 4 // comment supported in this part
|
||||
module test ( din_a, dout_a );
|
||||
input [`SIZE-1:0] din_a;
|
||||
output [`SIZE-1:0] dout_a;
|
||||
assign dout_a = din_a | `SIZE'ha;
|
||||
endmodule
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue