summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/simple/vloghammer.v7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/simple/vloghammer.v b/tests/simple/vloghammer.v
index 09987e7c..eb0e15d0 100644
--- a/tests/simple/vloghammer.v
+++ b/tests/simple/vloghammer.v
@@ -50,3 +50,10 @@ module test07(a, b, y);
assign y = 2'b11 != a+b;
endmodule
+module test08(a, b, y);
+ input [1:0] a;
+ input [1:0] b;
+ output y;
+ assign y = a == ($signed(b) >>> 1);
+endmodule
+