aboutsummaryrefslogtreecommitdiffstats
path: root/tests/simple/fsm.v
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2014-07-25 13:01:45 +0200
committerClifford Wolf <clifford@clifford.at>2014-07-25 13:01:45 +0200
commit50f22ff30c921c90f686879455117c7c2c9f96d5 (patch)
tree9ee57923c22af5d0559288452ca0c02f0747f2be /tests/simple/fsm.v
parent0520bfea892291a131134411d587034fcd36bf1c (diff)
downloadyosys-50f22ff30c921c90f686879455117c7c2c9f96d5.tar.gz
yosys-50f22ff30c921c90f686879455117c7c2c9f96d5.tar.bz2
yosys-50f22ff30c921c90f686879455117c7c2c9f96d5.zip
Renamed some of the test cases in tests/simple to avoid name collisions
Diffstat (limited to 'tests/simple/fsm.v')
-rw-r--r--tests/simple/fsm.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/simple/fsm.v b/tests/simple/fsm.v
index 79ca041dd..2dba14bb0 100644
--- a/tests/simple/fsm.v
+++ b/tests/simple/fsm.v
@@ -1,7 +1,7 @@
// `define ASYNC_RESET
-module test(clk, reset, button_a, button_b, red_a, green_a, red_b, green_b);
+module fsm_test(clk, reset, button_a, button_b, red_a, green_a, red_b, green_b);
input clk, reset, button_a, button_b;
output reg red_a, green_a, red_b, green_b;