diff options
Diffstat (limited to 'tests/hana/test_simulation_always_19_test.v')
-rw-r--r-- | tests/hana/test_simulation_always_19_test.v | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/hana/test_simulation_always_19_test.v b/tests/hana/test_simulation_always_19_test.v deleted file mode 100644 index 5152781df..000000000 --- a/tests/hana/test_simulation_always_19_test.v +++ /dev/null @@ -1,11 +0,0 @@ -module test(ctrl, in1, in2, out); -input ctrl; -input in1, in2; -output reg out; - -always @ (ctrl or in1 or in2) - if(ctrl) - out = in1 & in2; - else - out = in1 | in2; -endmodule |