diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/simple/vloghammer.v | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/simple/vloghammer.v b/tests/simple/vloghammer.v new file mode 100644 index 000000000..a0cde043a --- /dev/null +++ b/tests/simple/vloghammer.v @@ -0,0 +1,10 @@ + +// test cases found using vloghammer +// https://github.com/cliffordwolf/VlogHammer + +module test01(a, y); + input [7:0] a; + output [3:0] y; + assign y = ~a >> 4; +endmodule + |