Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

62 rindas
2.6KB

  1. ---------------------------------------------------------------------
  2. -- TITLE: Arithmetic Logic Unit
  3. -- AUTHOR: Steve Rhoads (rhoadss@yahoo.com)
  4. -- DATE CREATED: 2/8/01
  5. -- FILENAME: alu.vhd
  6. -- PROJECT: Plasma CPU core
  7. -- COPYRIGHT: Software placed into the public domain by the author.
  8. -- Software 'as is' without warranty. Author liable for nothing.
  9. -- DESCRIPTION:
  10. -- Implements the ALU.
  11. ---------------------------------------------------------------------
  12. library ieee;
  13. use ieee.std_logic_1164.all;
  14. use work.mlite_pack.all;
  15. entity alu is
  16. generic(alu_type : string := "DEFAULT");
  17. port(a_in : in std_logic_vector(31 downto 0);
  18. b_in : in std_logic_vector(31 downto 0);
  19. alu_function : in alu_function_type;
  20. c_alu : out std_logic_vector(31 downto 0));
  21. end; --alu
  22. architecture logic of alu is
  23. signal do_add : std_logic;
  24. signal sum : std_logic_vector(32 downto 0);
  25. signal less_than : std_logic;
  26. begin
  27. do_add <= '1' when alu_function = ALU_ADD else '0';
  28. sum <= bv_adder(a_in, b_in, do_add);
  29. less_than <= sum(32) when a_in(31) = b_in(31) or alu_function = ALU_LESS_THAN
  30. else a_in(31);
  31. GENERIC_ALU: if alu_type = "DEFAULT" generate
  32. c_alu <= sum(31 downto 0) when alu_function=ALU_ADD or
  33. alu_function=ALU_SUBTRACT else
  34. ZERO(31 downto 1) & less_than when alu_function=ALU_LESS_THAN or
  35. alu_function=ALU_LESS_THAN_SIGNED else
  36. a_in or b_in when alu_function=ALU_OR else
  37. a_in and b_in when alu_function=ALU_AND else
  38. a_in xor b_in when alu_function=ALU_XOR else
  39. a_in nor b_in when alu_function=ALU_NOR else
  40. ZERO;
  41. end generate;
  42. AREA_OPTIMIZED_ALU: if alu_type/="DEFAULT" generate
  43. c_alu <= sum(31 downto 0) when alu_function=ALU_ADD or
  44. alu_function=ALU_SUBTRACT else (others => 'Z');
  45. c_alu <= ZERO(31 downto 1) & less_than when alu_function=ALU_LESS_THAN or
  46. alu_function=ALU_LESS_THAN_SIGNED else
  47. (others => 'Z');
  48. c_alu <= a_in or b_in when alu_function=ALU_OR else (others => 'Z');
  49. c_alu <= a_in and b_in when alu_function=ALU_AND else (others => 'Z');
  50. c_alu <= a_in xor b_in when alu_function=ALU_XOR else (others => 'Z');
  51. c_alu <= a_in nor b_in when alu_function=ALU_NOR else (others => 'Z');
  52. c_alu <= ZERO when alu_function=ALU_NOTHING else (others => 'Z');
  53. end generate;
  54. end; --architecture logic