VHDL Grundkonstrukt
[calu.git] / cpu / src / decode_stage.vhd
diff --git a/cpu/src/decode_stage.vhd b/cpu/src/decode_stage.vhd
new file mode 100644 (file)
index 0000000..4be1c3e
--- /dev/null
@@ -0,0 +1,20 @@
+library IEEE;
+use IEEE.std_logic_1164.all;
+use IEEE.numeric_std.all;
+
+entity decode_stage is
+
+       generic (
+                       -- active reset value
+                       RESET_VALUE : std_logic;
+                       -- active logic value
+                       LOGIC_ACT : std_logic;
+                       
+                       );
+       port(
+               --System inputs
+                       clk : in std_logic;
+                       reset : in std_logic;
+               );
+               
+end decode_stage;