fetch und decode kompilierbar, generelle tb, änderung in pkgs, eigene decoder entity
[calu.git] / cpu / src / decoder.vhd
diff --git a/cpu/src/decoder.vhd b/cpu/src/decoder.vhd
new file mode 100644 (file)
index 0000000..41c5438
--- /dev/null
@@ -0,0 +1,16 @@
+library IEEE;
+use IEEE.std_logic_1164.all;
+use IEEE.numeric_std.all;
+
+use work.core_pkg.all;
+use work.common_pkg.all;
+
+entity decoder is
+
+       port (
+                       instruction : in instruction_word_t;
+                       instr_spl : out instruction_rec
+               );
+
+end decoder;
+