⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tlv_ide_ifc.vhd

📁 vhdl SOPC solution sram dram uart -2
💻 VHD
字号:
-- tlv_ide_ifc: IDE entity-- Copyright (C) 2006 Brno University of Technology,--                    Faculty of Information Technology-- Author(s): Ladislav Capka <xcapka01 AT stud.fit.vutbr.cz>---- LICENSE TERMS---- Redistribution and use in source and binary forms, with or without-- modification, are permitted provided that the following conditions-- are met:-- 1. Redistributions of source code must retain the above copyright--    notice, this list of conditions and the following disclaimer.-- 2. Redistributions in binary form must reproduce the above copyright--    notice, this list of conditions and the following disclaimer in--    the documentation and/or other materials provided with the--    distribution.-- 3. All advertising materials mentioning features or use of this software--    or firmware must display the following acknowledgement:----      This product includes software developed by the University of--      Technology, Faculty of Information Technology, Brno and its--      contributors.---- 4. Neither the name of the Company nor the names of its contributors--    may be used to endorse or promote products derived from this--    software without specific prior written permission.---- This software or firmware is provided ``as is'', and any express or implied-- warranties, including, but not limited to, the implied warranties of-- merchantability and fitness for a particular purpose are disclaimed.-- In no event shall the company or contributors be liable for any-- direct, indirect, incidental, special, exemplary, or consequential-- damages (including, but not limited to, procurement of substitute-- goods or services; loss of use, data, or profits; or business-- interruption) however caused and on any theory of liability, whether-- in contract, strict liability, or tort (including negligence or-- otherwise) arising in any way out of the use of this software, even-- if advised of the possibility of such damage.---- $Id$----library IEEE;use IEEE.std_logic_1164.all;entity tlv_ide_ifc isport (   -- hodiny   SMCLK     : in std_logic;   ACLK      : in std_logic;   FCLK      : in std_logic;   -- LED   LEDF      : out std_logic;   -- interni SPI   SPI_CLK   : out std_logic;   SPI_RST   : out std_logic;   SPI_CS    : in  std_logic;   SPI_DI    : out std_logic;   SPI_DI_REQ: in  std_logic;   SPI_DO    : in  std_logic;   SPI_DO_VLD: in  std_logic;   -- klavesnice 4x4   KIN       : out std_logic_vector(3 downto 0);   KOUT      : in  std_logic_vector(3 downto 0);   -- displej   LE        : out std_logic;   LRS       : out std_logic;   LRW       : out std_logic;   LD        : inout std_logic_vector(7 downto 0) := (others => 'Z');   -- SDRAM   RA        : out std_logic_vector(14 downto 0);   RD        : inout std_logic_vector(7 downto 0) := (others => 'Z');   RDQM      : out std_logic;   RCS       : out std_logic;   RRAS      : out std_logic;   RCAS      : out std_logic;   RWE       : out std_logic;   RCLK      : out std_logic;   RCKE      : out std_logic;   -- P3M   P3M       : inout std_logic_vector(7 downto 0) := (others => 'Z');   -- AFBUS   AFBUS     : inout std_logic_vector(11 downto 0) := (others => 'Z');   -- IDE   IDE       : inout std_logic_vector(45 downto 0) := (others => 'Z'));end tlv_ide_ifc;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -