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

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:                 Helmut Mayrhofer
  49. --
  50. --         Filename:               mc8051_control_.vhd
  51. --
  52. --         Date of Creation:       Mon Aug  9 12:14:48 1999
  53. --
  54. --         Version:                $Revision: 1.7 $
  55. --
  56. --         Date of Latest Version: $Date: 2002/01/07 12:17:45 $
  57. --
  58. --
  59. --         Description: Connects the units control_fsm and control_mem. This
  60. --                      unit manages the whole microcontroller core.
  61. --
  62. --
  63. --
  64. --
  65. -------------------------------------------------------------------------------
  66. library IEEE;
  67. library work;
  68. use IEEE.std_logic_1164.all;
  69. use IEEE.std_logic_arith.all;
  70. use work.mc8051_p.all;
  71. ------------------------ ENTITY DECLARATION -------------------------
  72. entity mc8051_control is
  73.   port (pc_o       : out std_logic_vector(15 downto 0);  -- Programmcounter =
  74.     -- ROM-adress
  75.         rom_data_i : in  std_logic_vector(7 downto 0);   -- data input from ROM
  76.         ram_data_o : out std_logic_vector(7 downto 0);   -- data output to
  77.     -- internal RAM
  78.         ram_data_i : in  std_logic_vector(7 downto 0);   -- data input from
  79.     -- internal RAM
  80.         ram_adr_o  : out std_logic_vector(6 downto 0);   -- internal RAM-adress
  81.         reg_data_o : out std_logic_vector(7 downto 0);   -- data for ALU
  82.         ram_wr_o   : out std_logic;   -- read (0) / write (1)
  83.    -- internal RAM
  84.         cy_o       : out std_logic_vector(1 downto 0);   -- Carry Flag
  85.         ov_o       : out std_logic;   -- Overflow Flag
  86.         ram_en_o   : out std_logic;   -- RAM-block enable
  87.         alu_cmd_o  : out std_logic_vector (5 downto 0);  -- ALU operationscode
  88.         aludata_i  : in  std_logic_vector (7 downto 0);  -- ALU result
  89.         aludatb_i  : in  std_logic_vector (7 downto 0);  -- 2nd ALU result
  90.         acc_o      : out std_logic_vector (7 downto 0);  -- ACC register
  91.         new_cy_i   : in  std_logic_vector(1 downto 0);   -- CY result of ALU
  92.         new_ov_i   : in  std_logic;   -- OV result of ALU
  93.         reset      : in  std_logic;   -- reset signal
  94.         clk        : in  std_logic;   -- clock signal
  95.         int0_i     : in  std_logic_vector(C_IMPL_N_EXT-1 downto 0);  -- ext.Int
  96.         int1_i     : in  std_logic_vector(C_IMPL_N_EXT-1 downto 0);  -- ext.Int
  97.         datax_i : in  std_logic_vector (7 downto 0);   -- ext. RAM
  98.         datax_o : out std_logic_vector (7 downto 0);   -- ext. RAM
  99.         adrx_o  : out std_logic_vector (15 downto 0);  -- ext. RAM
  100.         wrx_o   : out std_logic;          -- ext. RAM
  101.         p0_i : in std_logic_vector(7 downto 0);  -- IO-port0
  102.         p1_i : in std_logic_vector(7 downto 0);  -- IO-port1
  103.         p2_i : in std_logic_vector(7 downto 0);  -- IO-port2
  104.         p3_i : in std_logic_vector(7 downto 0);  -- IO-port3
  105.         p0_o : out std_logic_vector(7 downto 0);  -- IO-port0
  106.         p1_o : out std_logic_vector(7 downto 0);  -- IO-port1
  107.         p2_o : out std_logic_vector(7 downto 0);  -- IO-port2
  108.         p3_o : out std_logic_vector(7 downto 0);  -- IO-port3
  109.         -- Signals to and from the SIUs
  110.         all_trans_o : out std_logic_vector(C_IMPL_N_SIU-1 downto 0);
  111.         all_scon_o  : out std_logic_vector(6*C_IMPL_N_SIU-1 downto 0);
  112.         all_sbuf_o  : out std_logic_vector(8*C_IMPL_N_SIU-1 downto 0);
  113.         all_smod_o  : out std_logic_vector(C_IMPL_N_SIU-1 downto 0);
  114.         all_scon_i  : in  std_logic_vector(3*C_IMPL_N_SIU-1 downto 0);
  115.         all_sbuf_i  : in  std_logic_vector(8*C_IMPL_N_SIU-1 downto 0);
  116.         -- signals to and from the timer/counters
  117.         all_tcon_tr0_o : out std_logic_vector(C_IMPL_N_TMR-1 downto 0);
  118.         all_tcon_tr1_o : out std_logic_vector(C_IMPL_N_TMR-1 downto 0);
  119.         all_tmod_o     : out std_logic_vector(8*C_IMPL_N_TMR-1 downto 0);
  120.         all_reload_o   : out std_logic_vector(8*C_IMPL_N_TMR-1 downto 0);
  121.         all_wt_o       : out std_logic_vector(2*C_IMPL_N_TMR-1 downto 0);
  122.         all_wt_en_o    : out std_logic_vector(C_IMPL_N_TMR-1 downto 0);
  123.         all_tf0_i : in std_logic_vector(C_IMPL_N_TMR-1 downto 0);
  124.         all_tf1_i : in std_logic_vector(C_IMPL_N_TMR-1 downto 0);
  125.         all_tl0_i : in std_logic_vector(8*C_IMPL_N_TMR-1 downto 0);
  126.         all_tl1_i : in std_logic_vector(8*C_IMPL_N_TMR-1 downto 0);
  127.         all_th0_i : in std_logic_vector(8*C_IMPL_N_TMR-1 downto 0);
  128.         all_th1_i : in std_logic_vector(8*C_IMPL_N_TMR-1 downto 0));
  129. end mc8051_control;