addsub_core_struc.vhd
上传用户:sztwq510
上传日期:2007-04-20
资源大小:209k
文件大小:6k
源码类别:

VHDL/FPGA/Verilog

开发平台:

Matlab

  1. -------------------------------------------------------------------------------
  2. --                                                                           --
  3. --          X       X   XXXXXX    XXXXXX    XXXXXX    XXXXXX      X          --
  4. --          XX     XX  X      X  X      X  X      X  X           XX          --
  5. --          X X   X X  X         X      X  X      X  X          X X          --
  6. --          X  X X  X  X         X      X  X      X  X         X  X          --
  7. --          X   X   X  X          XXXXXX   X      X   XXXXXX      X          --
  8. --          X       X  X         X      X  X      X         X     X          --
  9. --          X       X  X         X      X  X      X         X     X          --
  10. --          X       X  X      X  X      X  X      X         X     X          --
  11. --          X       X   XXXXXX    XXXXXX    XXXXXX    XXXXXX      X          --
  12. --                                                                           --
  13. --                                                                           --
  14. --                       O R E G A N O   S Y S T E M S                       --
  15. --                                                                           --
  16. --                            Design & Consulting                            --
  17. --                                                                           --
  18. -------------------------------------------------------------------------------
  19. --                                                                           --
  20. --         Web:           http://www.oregano.at/                             --
  21. --                                                                           --
  22. --         Contact:       mc8051@oregano.at                                  --
  23. --                                                                           --
  24. -------------------------------------------------------------------------------
  25. --                                                                           --
  26. --  MC8051 - VHDL 8051 Microcontroller IP Core                               --
  27. --  Copyright (C) 2001 OREGANO SYSTEMS                                       --
  28. --                                                                           --
  29. --  This library is free software; you can redistribute it and/or            --
  30. --  modify it under the terms of the GNU Lesser General Public               --
  31. --  License as published by the Free Software Foundation; either             --
  32. --  version 2.1 of the License, or (at your option) any later version.       --
  33. --                                                                           --
  34. --  This library is distributed in the hope that it will be useful,          --
  35. --  but WITHOUT ANY WARRANTY; without even the implied warranty of           --
  36. --  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU        --
  37. --  Lesser General Public License for more details.                          --
  38. --                                                                           --
  39. --  Full details of the license can be found in the file LGPL.TXT.           --
  40. --                                                                           --
  41. --  You should have received a copy of the GNU Lesser General Public         --
  42. --  License along with this library; if not, write to the Free Software      --
  43. --  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA  --
  44. --                                                                           --
  45. -------------------------------------------------------------------------------
  46. --
  47. --
  48. --         Author:                 Roland H鰈ler
  49. --
  50. --         Filename:               addsub_core_struc.vhd
  51. --
  52. --         Date of Creation:       Mon Aug  9 12:14:48 1999
  53. --
  54. --         Version:                $Revision: 1.4 $
  55. --
  56. --         Date of Latest Version: $Date: 2002/01/07 12:17:44 $
  57. --
  58. --
  59. --         Description: Adder/Subtractor with carry/borrow, arbitrary data 
  60. --                      width, overflow, and nibble carry for decimal 
  61. --                      adjustment.
  62. --
  63. --
  64. --
  65. --
  66. -------------------------------------------------------------------------------
  67. architecture struc of addsub_core is
  68.   type t_cy is array (1 to (DWIDTH/4)+1) of std_logic_vector(0 downto 0);
  69.   signal s_cy : t_cy;
  70. begin  -- architecture structural
  71.   gen_smorequ_four : if (DWIDTH > 0 and DWIDTH <= 4) generate
  72.     addsub_ovcy_1 : addsub_ovcy
  73.       generic map (DWIDTH => DWIDTH)
  74.       port map (opa_i    => opa_i,
  75.                 opb_i    => opb_i,
  76.                 addsub_i => addsub_i,
  77.                 cy_i     => cy_i,
  78.                 cy_o     => cy_o(0),
  79.                 ov_o     => ov_o,
  80.                 rslt_o   => rslt_o);
  81.   end generate gen_smorequ_four;
  82.   s_cy(1)(0) <= cy_i;
  83.   
  84.   gen_greater_four : if (DWIDTH > 4) generate
  85.     gen_addsub: for i in 1 to DWIDTH generate
  86.       gen_nibble_addsub: if (i mod 4 = 0) and i <= ((DWIDTH-1)/4)*4 generate
  87. i_addsub_cy: addsub_cy
  88.   generic map (DWIDTH => 4)
  89.   port map (opa_i => opa_i(i-1 downto i-4),
  90.     opb_i => opb_i(i-1 downto i-4),
  91.     addsub_i => addsub_i,
  92.     cy_i => s_cy(i/4)(0),
  93.     cy_o => s_cy((i+4)/4)(0),
  94.     rslt_o => rslt_o(i-1 downto i-4));
  95. cy_o(i/4-1) <= s_cy((i+4)/4)(0);
  96.       end generate gen_nibble_addsub;
  97.       gen_last_addsub: if (i = ((DWIDTH-1)/4)*4+1) generate
  98. i_addsub_ovcy: addsub_ovcy
  99.   generic map (DWIDTH => DWIDTH-((DWIDTH-1)/4)*4)
  100.   port map (opa_i => opa_i(DWIDTH-1 downto i-1), 
  101.     opb_i => opb_i(DWIDTH-1 downto i-1), 
  102.     addsub_i => addsub_i,
  103.     cy_i => s_cy((DWIDTH-1)/4+1)(0),
  104.     cy_o => cy_o((DWIDTH-1)/4),
  105.     ov_o => ov_o,
  106.     rslt_o => rslt_o(DWIDTH-1 downto i-1)); 
  107.       end generate gen_last_addsub;
  108.     end generate gen_addsub;
  109.   end generate gen_greater_four;
  110. end struc;