mc8051_core_.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:                 Helmut Mayrhofer
  49. --
  50. --         Filename:               mc8051_core_.vhd
  51. --
  52. --         Date of Creation:       Mon Aug  9 12:14:48 1999
  53. --
  54. --         Version:                $Revision: 1.8 $
  55. --
  56. --         Date of Latest Version: $Date: 2002/01/07 12:17:45 $
  57. --
  58. --
  59. --         Description: Connect the mc8051_control and mc8051_alu modules.
  60. --                      Generate and connect a certain number of mc8051_tmrctr
  61. --                      and mc8051_siu units.
  62. --
  63. --
  64. --
  65. --
  66. -------------------------------------------------------------------------------
  67. library IEEE; 
  68. use IEEE.std_logic_1164.all; 
  69. use IEEE.std_logic_arith.all; 
  70. library work;
  71. use work.mc8051_p.all;
  72.   
  73. -----------------------------ENTITY DECLARATION--------------------------------
  74. entity mc8051_core is
  75.     
  76.   port (clk        : in std_logic;   -- system clock
  77.         reset      : in std_logic;   -- system reset
  78.         rom_data_i : in std_logic_vector(7 downto 0);  -- data input from ROM 
  79.         ram_data_i : in std_logic_vector(7 downto 0);  -- data input from
  80.                                                        -- internal RAM
  81.         int0_i     : in std_logic_vector(C_IMPL_N_EXT-1 downto 0);  -- ext.Int
  82.         int1_i     : in std_logic_vector(C_IMPL_N_EXT-1 downto 0);  -- ext.Int
  83.         -- counter input 0 for T/C
  84.         all_t0_i   : in std_logic_vector(C_IMPL_N_TMR-1 downto 0);
  85.         -- counter input 1 for T/C
  86.         all_t1_i   : in std_logic_vector(C_IMPL_N_TMR-1 downto 0);
  87.         -- serial input for SIU
  88.         all_rxd_i  : in std_logic_vector(C_IMPL_N_SIU-1 downto 0);
  89.         p0_i       : in std_logic_vector(7 downto 0);  -- IO-port0 input
  90.         p1_i       : in std_logic_vector(7 downto 0);  -- IO-port1 input
  91.         p2_i       : in std_logic_vector(7 downto 0);  -- IO-port2 input
  92.         p3_i       : in std_logic_vector(7 downto 0);  -- IO-port3 input 
  93.         p0_o        : out std_logic_vector(7 downto 0);  -- IO-port0 output
  94.         p1_o        : out std_logic_vector(7 downto 0);  -- IO-port1 output
  95.         p2_o        : out std_logic_vector(7 downto 0);  -- IO-port2 output
  96.         p3_o        : out std_logic_vector(7 downto 0);  -- IO-port3 output
  97.         -- M0 serial output for SIU
  98.         all_rxd_o   : out std_logic_vector(C_IMPL_N_SIU-1 downto 0);
  99.         -- serial output for SIU 
  100.         all_txd_o   : out std_logic_vector(C_IMPL_N_SIU-1 downto 0);
  101.         -- rxd direction signal
  102.         all_rxdwr_o : out std_logic_vector(C_IMPL_N_SIU-1 downto 0);
  103.         
  104.         rom_adr_o   : out std_logic_vector(15 downto 0);  -- Programmcounter =
  105.                                                           -- ROM-adress
  106.         ram_data_o  : out std_logic_vector(7 downto 0); -- data output to
  107.                                                         -- internal RAM
  108.         ram_adr_o   : out std_logic_vector(6 downto 0); -- internal RAM-address
  109.         ram_wr_o    : out std_logic;                    -- read (0) / write (1)
  110.         ram_en_o    : out std_logic;                    -- RAM-block enable
  111.         datax_i : in  std_logic_vector (7 downto 0);   -- ext. RAM data input
  112.         datax_o : out std_logic_vector (7 downto 0);   -- ext. RAM data output
  113.         adrx_o  : out std_logic_vector (15 downto 0);  -- ext. RAM address
  114.         wrx_o   : out std_logic);                      -- ext. RAM write enable
  115. end mc8051_core;