aboutsummaryrefslogtreecommitdiff
path: root/src/fsm_stopwatch.vhd
diff options
context:
space:
mode:
Diffstat (limited to 'src/fsm_stopwatch.vhd')
-rw-r--r--src/fsm_stopwatch.vhd14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/fsm_stopwatch.vhd b/src/fsm_stopwatch.vhd
new file mode 100644
index 0000000..818bc52
--- /dev/null
+++ b/src/fsm_stopwatch.vhd
@@ -0,0 +1,14 @@
+library ieee;
+use ieee.std_logic_1164.all;
+
+entity FSM_controller is
+ port(
+ clk, sysReset: in std_logic;
+ buttons: in std_logic_vector(1 downto 0);
+ watchRunning, watchReset: out std_logic);
+end FSM_controller;
+
+architecture Behavioral of FSM_controller is
+begin
+end Behavioral;
+