代码搜索结果
找到约 10,000 项符合
VHDL 的代码
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
100vhdl+
entity bit_rtl_reg_clk is
port (
pin : bit_vector;
cntl : bit;
clk : bit;
pout : out bit_vector
);
end bit_rtl_reg_clk;
architecture func of bit_rtl_reg_clk is
begin
100vhdl+
-- _ _
-- L
---------------------------OO-------OO---------------------------------
--
100vhdl+
library ieee;
use ieee.std_logic_1164.all;
use work.p_alarm.all;
entity tb_display_driver is
end tb_display_driver;
architecture tb of tb_display_driver is
component display_driver
100vhdl+
-- _ _
-- L
---------------------------OO-------OO---------------------------------
--
100vhdl+
--************VHDL********************
-- Module : 4-bit register
-- Name : register.vhd
-- Purpose: architecture of 4bit register
-- Comes from: XueYuan publication
-- Date: 1998,9,29
--****