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

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_ovcy_rtl.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 and arbitrary data
  60. --                      width and overflow flag.
  61. --
  62. --
  63. --
  64. --
  65. -------------------------------------------------------------------------------
  66. architecture rtl of addsub_ovcy is
  67. begin
  68.   gen_equal_one: if (DWIDTH = 1) generate
  69.     -- purpose: Simple adder/subtractor with carry/borrow and overflow
  70.     -- type   : combinational
  71.     -- inputs : opa_i, opb_i, addsub_i, cy_i
  72.     -- outputs: cy_o, rslt_o
  73.     p_addsub_ov: process (opa_i, opb_i, addsub_i, cy_i)
  74.       variable v_la : unsigned(1 downto 0);
  75.       variable v_lb : unsigned(1 downto 0);
  76.       variable v_lresult : std_logic_vector(2 downto 0);
  77.     begin  -- process p_addsub
  78.       v_la(1) := opa_i(DWIDTH-1);
  79.       v_lb(1) := opb_i(DWIDTH-1);
  80.       if addsub_i = '1' then
  81.         v_la(0) := '1';
  82.         v_lb(0) := cy_i;
  83.         v_lresult := conv_unsigned(v_la,3) + unsigned(v_lb);
  84.       else
  85.         v_la(0) := '0';
  86.         v_lb(0) := cy_i;
  87.         v_lresult := conv_unsigned(v_la,3) - unsigned(v_lb);
  88.       end if;
  89.       cy_o <= v_lresult(2);
  90.       ov_o <= (cy_i and not(v_lresult(2))) or
  91.        (v_lresult(2) and not(cy_i));
  92.       rslt_o(DWIDTH-1) <= v_lresult(1);
  93.     end process p_addsub_ov;
  94.   end generate gen_equal_one;
  95.   gen_greater_one: if (DWIDTH > 1) generate
  96.     -- purpose: Simple adder/subtractor with carry/borrow and overflow
  97.     -- type   : combinational
  98.     -- inputs : opa_i, opb_i, addsub_i, cy_i
  99.     -- outputs: cy_o, rslt_o
  100.     p_addsub_ov: process (opa_i, opb_i, addsub_i, cy_i)
  101.       variable v_a : unsigned(DWIDTH-1 downto 0);
  102.       variable v_b : unsigned(DWIDTH-1 downto 0);
  103.       variable v_result : std_logic_vector(DWIDTH downto 0);
  104.       variable v_la : unsigned(1 downto 0);
  105.       variable v_lb : unsigned(1 downto 0);
  106.       variable v_lresult : std_logic_vector(2 downto 0);
  107.     begin  -- process p_addsub
  108.       v_a(DWIDTH-1 downto 1) := unsigned(opa_i(DWIDTH-2 downto 0));
  109.       v_b(DWIDTH-1 downto 1) := unsigned(opb_i(DWIDTH-2 downto 0));
  110.       v_la(1) := opa_i(DWIDTH-1);
  111.       v_lb(1) := opb_i(DWIDTH-1);
  112.       if addsub_i = '1' then
  113.         v_a(0) := '1';
  114.         v_b(0) := cy_i;
  115.         v_result := conv_unsigned(v_a,DWIDTH+1) + unsigned(v_b);
  116.         v_la(0) := '1';
  117.         v_lb(0) := v_result(DWIDTH);
  118.         v_lresult := conv_unsigned(v_la,3) + unsigned(v_lb);
  119.       else
  120.         v_a(0) := '0';
  121.         v_b(0) := cy_i;
  122.         v_result := conv_unsigned(v_a,DWIDTH+1) - unsigned(v_b);
  123.         v_la(0) := '0';
  124.         v_lb(0) := v_result(DWIDTH);      
  125.         v_lresult := conv_unsigned(v_la,3) - unsigned(v_lb);
  126.       end if;
  127.       cy_o <= v_lresult(2);
  128.       ov_o <= (v_result(DWIDTH) and not(v_lresult(2))) or
  129.        (v_lresult(2) and not(v_result(DWIDTH)));
  130.       rslt_o(DWIDTH-2 downto 0) <= v_result(DWIDTH-1 downto 1);
  131.       rslt_o(DWIDTH-1) <= v_lresult(1);
  132.     end process p_addsub_ov;
  133.   end generate gen_greater_one;
  134. end rtl;