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

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:               control_mem_.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: Describe all sequential funcitonality like read from
  60. --                      special function registers, observe interrupt sources,
  61. --                      write to special function registers, and read or write
  62. --                      to the bit addressable memory area.
  63. --
  64. --
  65. --
  66. --
  67. -------------------------------------------------------------------------------
  68. library IEEE;
  69. library work;
  70. use IEEE.std_logic_1164.all;
  71. use IEEE.std_logic_arith.all;
  72. use work.mc8051_p.all;
  73. entity control_mem is
  74.   port (pc_o       : out std_logic_vector(15 downto 0);  -- Programmcounter =
  75.     -- ROM-adress
  76.         rom_data_i : in  std_logic_vector(7 downto 0);   -- data input from ROM
  77.         ram_data_o : out std_logic_vector(7 downto 0);   -- data output to
  78.     -- internal RAM
  79.         ram_data_i : in  std_logic_vector(7 downto 0);   -- data input from
  80.     -- internal RAM
  81.         ram_adr_o  : out std_logic_vector(6 downto 0);   -- internal RAM-adress
  82.         reg_data_o : out std_logic_vector(7 downto 0);   -- data for ALU
  83.         ram_wr_o   : out std_logic;   -- read (0) / write (1)
  84.    -- internal RAM
  85.         cy_o       : out std_logic_vector(1 downto 0);   -- Carry Flag
  86.         ov_o       : out std_logic;   -- Overflow Flag
  87.         ram_en_o   : out std_logic;   -- RAM-block enable
  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.         p0_i : in std_logic_vector(7 downto 0);  -- IO-port0
  98.         p1_i : in std_logic_vector(7 downto 0);  -- IO-port1
  99.         p2_i : in std_logic_vector(7 downto 0);  -- IO-port2
  100.         p3_i : in std_logic_vector(7 downto 0);  -- IO-port3
  101.         p0_o : out std_logic_vector(7 downto 0);  -- IO-port0
  102.         p1_o : out std_logic_vector(7 downto 0);  -- IO-port1
  103.         p2_o : out std_logic_vector(7 downto 0);  -- IO-port2
  104.         p3_o : out std_logic_vector(7 downto 0);  -- IO-port3
  105.         -- Signals to and from the SIUs
  106.         -- "1" starts serial transmission in SIU
  107.         all_trans_o : out std_logic_vector(C_IMPL_N_SIU-1 downto 0);
  108.         -- RI,SM0,SM1,SM2,REN,TB8
  109.         all_scon_o  : out std_logic_vector(6*C_IMPL_N_SIU-1 downto 0);
  110.         -- data buffer for SIU
  111.         all_sbuf_o  : out std_logic_vector(8*C_IMPL_N_SIU-1 downto 0);
  112.         -- baud rate for SIU in PCON
  113.         all_smod_o  : out std_logic_vector(C_IMPL_N_SIU-1 downto 0);
  114.         -- RB8, TI, RI of SIU
  115.         all_scon_i  : in  std_logic_vector(3*C_IMPL_N_SIU-1 downto 0);
  116.         -- int. data buffer of SIU
  117.         all_sbuf_i  : in  std_logic_vector(8*C_IMPL_N_SIU-1 downto 0);
  118.         -- signals to and from the timer/counters
  119.         -- timer run flag0 of T/C
  120.         all_tcon_tr0_o : out std_logic_vector(C_IMPL_N_TMR-1 downto 0);
  121.         -- timer run flag1 of T/C
  122.         all_tcon_tr1_o : out std_logic_vector(C_IMPL_N_TMR-1 downto 0);
  123.         -- TMOD for T/C
  124.         all_tmod_o     : out std_logic_vector(8*C_IMPL_N_TMR-1 downto 0);
  125.         -- user reload value for T/C
  126.         all_reload_o   : out std_logic_vector(8*C_IMPL_N_TMR-1 downto 0);
  127.         -- reload enable for T/C
  128.         all_wt_o       : out std_logic_vector(2*C_IMPL_N_TMR-1 downto 0);
  129.         -- reload target for T/C
  130.         all_wt_en_o    : out std_logic_vector(C_IMPL_N_TMR-1 downto 0);
  131.         -- timer OF flag0 of T/C
  132.         all_tf0_i      : in  std_logic_vector(C_IMPL_N_TMR-1 downto 0);
  133.         -- timer OF flag1 of T/C
  134.         all_tf1_i      : in  std_logic_vector(C_IMPL_N_TMR-1 downto 0);
  135.         -- count value of T/C
  136.         all_tl0_i      : in  std_logic_vector(8*C_IMPL_N_TMR-1 downto 0);
  137.         -- count value of T/C
  138.         all_tl1_i      : in  std_logic_vector(8*C_IMPL_N_TMR-1 downto 0);
  139.         -- count value of T/C
  140.         all_th0_i      : in  std_logic_vector(8*C_IMPL_N_TMR-1 downto 0);
  141.         -- count value of T/C
  142.         all_th1_i      : in  std_logic_vector(8*C_IMPL_N_TMR-1 downto 0);
  143.         -- signals from/to the state-machine
  144.         state_o    : out t_state;   -- actual state
  145.         help_o     : out std_logic_vector(7 downto 0);   -- general help-reg
  146.         bit_data_o : out std_logic;   -- bitdata from regs
  147.         command_o  : out std_logic_vector (7 downto 0);  -- actual command
  148.         inthigh_o  : out std_logic;   -- an interrupt must start
  149.         intlow_o   : out std_logic;   -- prepare for interrupt
  150.         intpre_o   : out std_logic;   -- high priority int is running
  151.         intpre2_o  : out std_logic;   -- low priority int is running
  152.         ti_o       : out std_logic;
  153.         ri_o       : out std_logic;
  154.         it0_o      : out std_logic;
  155.         ie0_o      : out std_logic;
  156.         it1_o      : out std_logic;
  157.         ie1_o      : out std_logic;
  158.         tf0_o      : out std_logic;
  159.         tf1_o      : out std_logic;
  160.         psw_o      : out std_logic_vector(7 downto 0);
  161.         ie_o       : out std_logic_vector(7 downto 0);
  162.         ip_o       : out std_logic_vector(7 downto 0);
  163.         adrx_o     : out std_logic_vector(15 downto 0);  -- ext. RAM
  164.         datax_o    : out std_logic_vector(7 downto 0);   -- ext. RAM
  165.         wrx_o      : out std_logic;   -- ext. RAM
  166.         datax_i      : in std_logic_vector(7 downto 0);  -- ext. RAM
  167.         pc_inc_en_i  : in std_logic_vector (3 downto 0);
  168.         nextstate_i  : in t_state;   -- enable signal for state
  169.         adr_mux_i    : in std_logic_vector (3 downto 0);
  170.         adrx_mux_i   : in std_logic_vector (1 downto 0);
  171.         wrx_mux_i    : in std_logic;
  172.         data_mux_i   : in std_logic_vector (3 downto 0);
  173.         bdata_mux_i  : in std_logic_vector (3 downto 0);
  174.         regs_wr_en_i : in std_logic_vector (2 downto 0);
  175.         help_en_i    : in std_logic_vector (3 downto 0);
  176.         help16_en_i  : in std_logic_vector (1 downto 0);
  177.         helpb_en_i   : in std_logic;
  178.         inthigh_en_i : in std_logic;
  179.         intlow_en_i  : in std_logic;
  180.         intpre2_en_i : in std_logic;
  181.         inthigh_d_i  : in std_logic;
  182.         intlow_d_i   : in std_logic;
  183.         intpre2_d_i  : in std_logic);
  184. end control_mem;