代码搜索:std
找到约 10,000 项符合「std」的源代码
代码结果 10,000
www.eeworm.com/read/218217/14930956
vhd video.vhd
------------------------------------------------------------------------------------------------
-- Company : XESS Corp.
-- Engineer : Dave Vanden Bout
-- Creation Date : 2/9/2006
-- Co
www.eeworm.com/read/216955/14984272
vhd newcoder.vhd
LIBRARY IEEE;
USE IEEE.STD_LOGIC_1164.ALL;
USE IEEE.STD_LOGIC_UNSIGNED.ALL;
ENTITY newCODER IS
PORT(EN: IN STD_LOGIC;
A:IN STD_LOGIC_VECTOR(6 DOWNTO 0);
B:OUT STD_LOGIC_VECTOR(
www.eeworm.com/read/216955/14984448
vhd show.vhd
LIBRARY IEEE;
USE IEEE.STD_LOGIC_1164.ALL;
USE IEEE.STD_LOGIC_UNSIGNED.ALL;
ENTITY SHOW IS
PORT(CLK_IN:IN STD_LOGIC;
S_IN:IN STD_LOGIC;
LOAD_IN:IN STD_LOGIC_VECTOR(3 DOWNTO 0);
www.eeworm.com/read/114177/15074327
vhd c_fenpin.vhd
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity c_fenpin is
port(clk:in std_logic;
y:out std_logic);
end;
architecture behav of c
www.eeworm.com/read/215073/15075600
vhd data_core.vhd
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;
-- Uncomment the following lines to use the declarations that are
-- provided for instantia
www.eeworm.com/read/214547/15096989
vhd dds_vhdl.vhd
LIBRARY IEEE;
USE IEEE.STD_LOGIC_1164.ALL;
USE IEEE.STD_LOGIC_UNSIGNED.ALL;
ENTITY DDS_VHDL IS -- 顶层设计
PORT ( CLKK : IN STD_LOGIC;
FWORD
www.eeworm.com/read/214366/15104726
vhd reg.vhd
-- reg.vhd
-- This module implements a 16-bit general purpose register. The contents of
-- register is loaded on the rising edge of "clk". It is cleared to zero when
-- "reset" is asserted low. T
www.eeworm.com/read/214366/15104731
vhd pc.vhd
-- pc.vhd
-- This module implements the 16-bit program Counter (PC). PC is loaded from
-- PCIn on the next clock when "PCControl" is asserted high. PC is cleared to
-- zero when "reset" is assert
www.eeworm.com/read/214188/15111185
vhd topglobal.vhd
-- Top global: Nivel superior, encargado de la comunicacion entre
-- los dos subtops y de controlar los accesos de lectura y escritura
library IEEE;
use IEEE.std_logic_1164.all;
entity Topglobal
www.eeworm.com/read/214188/15111191
vhd toptrata.vhd
--Toptrata: Subtop encargado de realizar el procesamiento ordenado desde Topcom
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_arith.all;
use IEEE.std_logic_unsigned.all;
entity to