comb_divider_rtl.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:               comb_divider_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: Divider with parameteriseable data width. Realised
  60. --                      using combinational logic only.
  61. --
  62. --
  63. --
  64. --
  65. -------------------------------------------------------------------------------
  66. architecture rtl of comb_divider is
  67. begin  -- rtl
  68.   -- purpose: Divide dvdnd_i through dvsor_i and deliver the result to qutnt_o
  69.   --          and the remainder to rmndr_o.
  70.   -- type   : combinational
  71.   -- inputs : dvdnd_i, dvsor_i
  72.   -- outputs: qutnt_o, rmndr_o
  73.   p_divide: process (dvdnd_i, dvsor_i)
  74.     variable v_actl_dvdnd : unsigned(DWIDTH-1 downto 0);
  75.     variable v_dffrnc     : unsigned(DWIDTH-1 downto 0);
  76.     variable v_qutnt      : unsigned(DWIDTH-1 downto 0);
  77.     
  78.   begin  -- process p_divide
  79.     v_actl_dvdnd := unsigned(dvdnd_i);
  80.     
  81.     for i in DWIDTH-1 downto 0 loop
  82.       -- If the divisor can be subtracted from this part of the dividend, then
  83.       -- the corresponding bit of the quotient has to be 1, otherwise 0.
  84.       if conv_std_logic_vector(v_actl_dvdnd(DWIDTH-1 downto i),DWIDTH) >=
  85.         dvsor_i then
  86.         -- Divisor can be subtracted
  87.         v_qutnt(i) := '1';
  88.         v_dffrnc := conv_unsigned(v_actl_dvdnd(DWIDTH-1 downto i),DWIDTH)
  89.                     - unsigned(dvsor_i);
  90.         -- As long as this is not the last step of calculation, shift the
  91.         -- intermediate result.
  92.         if i /= 0 then
  93.           v_actl_dvdnd(DWIDTH-1 downto i) := v_dffrnc(DWIDTH-1-i downto 0);
  94.           v_actl_dvdnd(i-1) := dvdnd_i(i-1);
  95.         end if;
  96.       else
  97.         -- Divisor is greater than this part of the dividend.
  98.         v_qutnt(i) := '0';
  99.         v_dffrnc := conv_unsigned(v_actl_dvdnd(DWIDTH-1 downto i),DWIDTH);
  100.       end if;
  101.     end loop;  -- i
  102.     
  103.     rmndr_o <= std_logic_vector(v_dffrnc);
  104.     qutnt_o <= std_logic_vector(v_qutnt);
  105.     
  106.   end process p_divide;
  107. end rtl;