mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-10 21:20:53 +00:00
Merge branch 'master' of github.com:cliffordwolf/yosys
This commit is contained in:
commit
618b2ac994
5 changed files with 189 additions and 37 deletions
18
tests/simple/signedexpr.v
Normal file
18
tests/simple/signedexpr.v
Normal file
|
@ -0,0 +1,18 @@
|
|||
module test01(a, b, xu, xs, yu, ys, zu, zs);
|
||||
|
||||
input signed [1:0] a;
|
||||
input signed [2:0] b;
|
||||
output [3:0] xu, xs;
|
||||
output [3:0] yu, ys;
|
||||
output zu, zs;
|
||||
|
||||
assign xu = (a + b) + 3'd0;
|
||||
assign xs = (a + b) + 3'sd0;
|
||||
|
||||
assign yu = {a + b} + 3'd0;
|
||||
assign ys = {a + b} + 3'sd0;
|
||||
|
||||
assign zu = a + b != 3'd0;
|
||||
assign zs = a + b != 3'sd0;
|
||||
|
||||
endmodule
|
Loading…
Add table
Add a link
Reference in a new issue