代码搜索:熔丝位
找到约 10,000 项符合「熔丝位」的源代码
代码结果 10,000
www.eeworm.com/read/405229/11468249
mht 7--16位无符号数排序.mht
From:
Subject: =?gb2312?B?yrXA/Tc=?=
Date: Tue, 7 Oct 2003 01:59:03 +0800
MIME-Version: 1.0
Content-Type: text/html;
charset="gb2312"
Content-Transfer-Encod
www.eeworm.com/read/346772/11723852
m 信号 x 作零相位滤波.m
% ------------------------------------------------------------------------------
% exa050901_filtfilt.m, for example 5.9.1;
% to test filtfilt.m and to realize the zero-phase filtering;
% ---------
www.eeworm.com/read/157209/11730223
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/157209/11730231
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/345690/11795136
txt 帶同步復位的狀態機.txt
-- State Machine with Asynchronous Reset
-- dowload from: www.fpga.com.cn & www.pld.com.cn
library ieee;
use ieee.std_logic_1164.all;
entity stmch1 is
port(clk, in1, rst: in std_logic;
www.eeworm.com/read/345690/11795190
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/345415/11816415
pdf 可编程28位序列号.pdf
www.eeworm.com/read/338634/12291211
ppt 7_ 宽位字符串映射.ppt
www.eeworm.com/read/337991/12330208
ewb 二极管钳位电路.ewb
Electronics Workbench Circuit File
Version: 5
Charset: ANSI
Description:
""
EncryptionType: 2
UsingVectorGraphics: 0
/000@D0I0?4D
www.eeworm.com/read/149400/12382753
txt 一个字节位颠倒.txt
要把一个字节位颠倒,既0x80变为0x01,有两种方法 [龙啸九天] [831次] 01-3-24 下午 07:56:05
/*————————————————————
〖说明〗要把一个字节位颠倒,既0x80变为0x01,有两种方法:
uchar a,b;
b=upset(a); 或 b=UpsetChar[a];
一个代码小,但速度慢,一个代码大、但速度快。
〖文件〗upset.c