代码搜索:熔丝位

找到约 10,000 项符合「熔丝位」的源代码

代码结果 10,000
www.eeworm.com/read/353811/10416370

txt 8位总线收发器:74245.txt

-- Octal Bus Transceiver -- This example shows the use of the high impedance literal 'Z' provided by std_logic. -- The aggregate '(others => 'Z')' means all of the bits of B must be forced to 'Z'.
www.eeworm.com/read/353811/10416410

txt 8位相等比较器.txt

-- 8-bit Identity Comparator -- uses 1993 std VHDL -- download from www.pld.com.cn & www.fpga.com.cn library IEEE; use IEEE.Std_logic_1164.all; entity HCT688 is port(Q, P : in std_logic_v
www.eeworm.com/read/417397/10991820

txt 8位总线收发器:74245.txt

-- Octal Bus Transceiver -- This example shows the use of the high impedance literal 'Z' provided by std_logic. -- The aggregate '(others => 'Z')' means all of the bits of B must be forced to 'Z'.
www.eeworm.com/read/417397/10991823

txt 8位相等比较器.txt

-- 8-bit Identity Comparator -- uses 1993 std VHDL -- download from www.pld.com.cn & www.fpga.com.cn library IEEE; use IEEE.Std_logic_1164.all; entity HCT688 is port(Q, P : in std_logic_v
www.eeworm.com/read/467494/7004380

txt 4 级流水方式的8 位全加器.txt

4 级流水方式的8 位全加器 module pipeline(cout,sum,ina,inb,cin,clk); output[7:0] sum; output cout; input[7:0] ina,inb; input cin,clk; reg[7:0] tempa,tempb,sum; reg tempci,firstco,secondco,thirdco,cout; r
www.eeworm.com/read/464425/7163712

txt 8位十进制频率计.txt

/* freqtest.v -8位十进制频率计*/ /* Copyright 2008-2018 */ /* modification history -------------------- 01a,16jan08,52mcu 163haole@163.com */ /* DESCRIPTION Cyclone II EP2C5Q208C */ modul