代码搜索结果

找到约 10,000 项符合 Logic Analyzer 的代码

xor32.vhd

--xor32 library IEEE; use IEEE.std_logic_1164.all; use Ieee.std_logic_unsigned.all; use Ieee.std_logic_arith.all; entity xor32 is port(h1,h2,m1,m2,h3,h4,m3,m4:in std_logic_vector(3 downto 0);

division10.vhd

library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_arith.all; use ieee.std_logic_unsigned.all; entity division10 is port(lin:in std_logic_vector(9 downto 0); clock:in std_logic;

bsr.vhd

library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_arith.all; use ieee.std_logic_unsigned.all; entity bsr is port(din :in std_logic_vector(7 downto 0); s:in std_logic_vector(2 downto

lcd.vhd

library IEEE; use IEEE.STD_LOGIC_1164.ALL; use IEEE.STD_LOGIC_ARITH.ALL; use IEEE.STD_LOGIC_UNSIGNED.ALL; entity lcd is Port ( clk : in std_logic; --3.125MHZ FROM div16 Module

lcd.vhd

library IEEE; use IEEE.STD_LOGIC_1164.ALL; use IEEE.STD_LOGIC_ARITH.ALL; use IEEE.STD_LOGIC_UNSIGNED.ALL; entity lcd is Port ( clk : in std_logic; --3.125MHZ FROM div16 Module

my_pkg.vhd

library ieee; use ieee.std_logic_1164.all; package my_pkg is component div1024--1Hz_generator component Port( clk: in std_logic;--from system clock(1024Hz) f1hz : out std_logic);-- 1H

shiftrne.vhd

--shiftrne.vhd n-bit left-to-right shift register --with parallel load and enable library ieee ; use ieee.std_logic_1164.all ; entity shiftrne is generic ( n : integer := 7 ) ; port ( r : i

divider.vhd

--divider.vhd n-bit divider library ieee; use ieee.std_logic_1164.all; use ieee.std_logic_unsigned.all ; use work.components.all ; entity divider is generic ( n : integer := 7 ) ; port ( c

shiftlne.vhd

--shiftlne.vhd n-bitright-to-left shift register --with parallel load and enable library ieee ; use ieee.std_logic_1164.all ; entity shiftlne is generic ( n : integer := 7 ) ; port( r : in s

ide.vhd

-------------------------------------------------------------------- -- Company : XESS Corp. -- Engineer : Dave Vanden Bout -- Creation Date : 01/30/2006 -- Copyright : 2006, XESS C