41c54382ddaf524d25d95124c7d7ee3c2a4b92fb
[calu.git] / cpu / src / decoder.vhd
1 library IEEE;
2 use IEEE.std_logic_1164.all;
3 use IEEE.numeric_std.all;
4
5 use work.core_pkg.all;
6 use work.common_pkg.all;
7
8 entity decoder is
9
10         port (
11                         instruction : in instruction_word_t;
12                         instr_spl : out instruction_rec
13                 );
14
15 end decoder;
16