From b380c8c790233f9237b503656cfd28fd5e65eff5 Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Thu, 11 Jul 2013 19:24:59 +0200 Subject: Another vloghammer related bugfix --- tests/simple/vloghammer.v | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'tests/simple') 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 + -- cgit v1.2.3