one place for all my love
[hwmod.git] / demo / src / demo_pkg.vhd
diff --git a/demo/src/demo_pkg.vhd b/demo/src/demo_pkg.vhd
new file mode 100644 (file)
index 0000000..5eb5c08
--- /dev/null
@@ -0,0 +1,13 @@
+library ieee;
+use ieee.std_logic_1164.all;
+
+package demo_pkg is
+
+  constant SIMULATION : boolean := FALSE;
+  
+  constant PERIOD : time := 10 ns;
+  constant RESETVALUE : std_logic := '0';
+  constant LED_ON : std_logic := '1';
+  constant LED_OFF : std_logic := '0';
+    
+end demo_pkg;