代码搜索:vhdl

找到约 10,000 项符合「vhdl」的源代码

代码结果 10,000
www.eeworm.com/read/39713/1134957

100vhdl+

--这是子类型和部件声明的包 --用于区分向量类型的不同宽度 LIBRARY ieee; USE ieee.std_logic_1164.ALL; USE ieee.std_logic_arith.ALL; PACKAGE pkg_types IS SUBTYPE bit1 IS std_ulogic; SUBTYPE bit
www.eeworm.com/read/39713/1134958

100vhdl+

--wss为一个组装程序,把mem_string,mem_sequence,co_processor --和top controller组装为一个系统 LIBRARY ieee; USE ieee.std_logic_1164.ALL; USE ieee.std_logic_arith.ALL; --USE ieee.std_logic_unsigned.ALL;
www.eeworm.com/read/39713/1134959

100vhdl+

--Page :303 304 --Objective :Efficient command decoding --Filename :test_67b.vhd --Author :Joseph Pick entity Test_67b is end Test_67b; architecture Behave_1
www.eeworm.com/read/39713/1134960

100vhdl+

package logic is type Bit_vector is array (Natural range ) of Bit; end logic; use WORK.logic.all; entity And2 is port( I1,I2: Bit; O1: out Bit); end and2; architecture And2_archit of
www.eeworm.com/read/39713/1134961

100vhdl+

www.eeworm.com/read/39713/1134962

100vhdl+

library IEEE; use IEEE.std_logic_1164.all; entity test_decoder3 is end test_decoder3; architecture BENCH of test_decoder3 is component decoder3 port( Sel : Bit_vector ( 1 to 3 ); Do
www.eeworm.com/read/39713/1134963

100vhdl+

www.eeworm.com/read/39713/1134964

100vhdl+

-- Author : yzf -- Created On: Tue Dec 12 08:26:19 1995 -- Testbench for prefetch.prefetch use work.types.all; architecture BENCH of test_prefetch is component prefetch PORT( BR
www.eeworm.com/read/39713/1134965

100vhdl+

-- Author : yzf -- Created On: Tue Dec 12 08:26:19 1995 -- Testbench for prefetch.prefetch library STD; library WORK; use STD.STANDARD.ALL; use WORK.ALL; entity test_prefetch is end t
www.eeworm.com/read/39713/1134966

100vhdl+

--**VHDL************************************************************* -- -- SRC-MODULE : PREFETCH -- NAME : prefetch.vhdl -- VERSION : 1.0 -- -- PURPOSE : Architecture of PREFETCH b