summaryrefslogtreecommitdiff
path: root/tests/simple
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2013-07-09 14:31:57 +0200
committerClifford Wolf <clifford@clifford.at>2013-07-09 14:31:57 +0200
commit00a6c1d9a57da0e0b0fef07b2d618847ed93a9fd (patch)
tree149e564703234381d2c8f03e6698bede1735fd53 /tests/simple
parente8da3ea7b647f2c1eeba8a84590df7b05ca4e046 (diff)
Major redesign of expr width/sign detecion (verilog/ast frontend)
Diffstat (limited to 'tests/simple')
-rw-r--r--tests/simple/signedexpr.v18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/simple/signedexpr.v b/tests/simple/signedexpr.v
new file mode 100644
index 00000000..3eb5e93d
--- /dev/null
+++ b/tests/simple/signedexpr.v
@@ -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