代码搜索:vhdl
找到约 10,000 项符合「vhdl」的源代码
代码结果 10,000
www.eeworm.com/read/39713/1134927
100vhdl+
--******************************************
-- Test Bench
-- Name : test_register.vhd
-- Purpose : test 4-bit register
-- Author : Liu Qinnan
-- Time : 1998,9,29
--*****************
www.eeworm.com/read/39713/1134928
100vhdl+
function WiredOr (V: MVL7_VECTOR) return MVL7 is
-- truth table for "WiredOr" function
constant tbl_WIREDOR: MVL7_TABLE :=
-- -----------------------------------------------
-- | X 0
www.eeworm.com/read/39713/1134929
100vhdl+
www.eeworm.com/read/39713/1134930
100vhdl+
www.eeworm.com/read/39713/1134931
100vhdl+
library ieee;
use ieee.std_logic_1164.all;
--library bitlib;
use work.bit_pack.all;
entity static_ram is
generic ( --下面给出的是RAM6116的时间特性值
--在本系统的组装中将被置为43258A-25CMOS RAM
www.eeworm.com/read/39713/1134932
100vhdl+
package bit_pack is
--功能是把bit_vector转换成整型
function vec2int(vec1:bit_vector)
return integer;
--功能是把integer转换为bit_vector类型
function int2vec(int1,Nbits:integer)
return bit_vector
www.eeworm.com/read/39713/1134933
100vhdl+
www.eeworm.com/read/39713/1134934
100vhdl+
-- _ _
-- L
---------------------------OO-------OO---------------------------------
--
www.eeworm.com/read/39713/1134935
100vhdl+
library ieee;
use ieee.std_logic_1164.all;
entity tb_alarm_controller is
end tb_alarm_controller;
use work.p_alarm.all;
architecture test of tb_alarm_controller is
component alarm_controll
www.eeworm.com/read/39713/1134936
100vhdl+
-- _ _
-- L
---------------------------OO-------OO---------------------------------
--