3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-06 17:44:09 +00:00

Add constant expression attribute to test

This commit is contained in:
Eddie Hung 2019-08-29 09:10:20 -07:00
parent 83ffec26cb
commit 67587bad7f

View file

@ -7,6 +7,7 @@ module top(input i, output o);
sub s0(i, o);
endmodule
(* constant_expression=1+1?2*2:3/3 *)
module sub(input i, output o);
assign o = ~i;
endmodule