alu: besseres geruest
[hwmod.git] / src / gen_pkg.vhd
1 library ieee;
2 use ieee.std_logic_1164.all;
3 use ieee.numeric_std.all;
4
5 package gen_pkg is
6         type alu_ops is (NOP, SUB, ADD, MUL, DIV, DONE);
7         subtype csigned is signed(31 downto 0);
8 end package gen_pkg;
9