代码搜索结果
找到约 10,000 项符合
VHDL 的代码
100vhdl+
--******************************************
-- Test Bench
-- Name : test_register.vhd
-- Purpose : test 4-bit register
-- Author : Liu Qinnan
-- Time : 1998,9,29
--*****************
100vhdl+
function WiredOr (V: MVL7_VECTOR) return MVL7 is
-- truth table for "WiredOr" function
constant tbl_WIREDOR: MVL7_TABLE :=
-- -----------------------------------------------
-- | X 0
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
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
100vhdl+
-- _ _
-- L
---------------------------OO-------OO---------------------------------
--
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
100vhdl+
-- _ _
-- L
---------------------------OO-------OO---------------------------------
--