代码搜索:熔丝位
找到约 10,000 项符合「熔丝位」的源代码
代码结果 10,000
www.eeworm.com/read/405204/11469545
cpp jishuqi.cpp
#include "jishuqi.h"
void jishuqi::prc_jishuqi()
{
if(reset)
Q=0;
else
Q=Q+1;
A=Q(3,0); //改为低4位
B=Q(5,3);
}
www.eeworm.com/read/401248/11560319
h config.h
#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif
typedef unsigned char uint8; /* 无符号8位整型变量 */
typedef signed char int8
www.eeworm.com/read/346831/11719094
h lpc210x.h
/*
*********************************************************************************************************
* 文件: LPC210X.H
* 描述: 定义PHILIPS LPC2104/5/6 系列 32 位 MCU 的特殊功能寄存器.
* 编写: 深思 (001-12345@
www.eeworm.com/read/155674/11855617
m mutation.m
function Gpath=Mutation(Gpath,Pm,Popsize)
%位对调变异
[row,col]=size(Gpath);
for i=1:Popsize
for j=1:col
tempPm=rand(1);
if(tempPm
www.eeworm.com/read/258041/11892265
asm port1 (2).asm
KEYLEFT BIT P1.0
KEYRIGHT BIT P1.1
LEDLEFT BIT P1.2
LEDRIGHT BIT P1.3 ;位定义
ORG 00H
SETB KEYLEFT
SETB KE
www.eeworm.com/read/343230/11962294
c hongwai.c
#include
#define uchar unsigned char
#define uint unsigned int
#define IR_RE P3_2
bit k=0; //红外解码判断标志位,为
www.eeworm.com/read/151354/12218009
asm caculatorv20.asm
;算术表达式计算,16位定点,溢出,除0报告,要求运算错误能恢复,
;尽量压缩文件大小,紧奏。
;CaculatorV2.0
.8086
;*******************************************************************************
;****************************************
www.eeworm.com/read/251512/12340446
m mutation.m
function Gpath=Mutation(Gpath,Pm,Popsize)
%位对调变异
[row,col]=size(Gpath);
for i=1:Popsize
for j=1:col
tempPm=rand(1);
if(tempPm
www.eeworm.com/read/149576/12364716
txt bcd_sub.txt
;双测试程序 数字不够时自动从Num_1借一位
;******************* Unsigned BCD Subtraction ***************
;
; This routine performs a 2 Digit Unsigned BCD Subtraction.
; It is assumed that the two BCD numbe
www.eeworm.com/read/131795/14125086
dat asslandat35.dat
逻辑非运算指令 NOT
格式: NOT OPRD
----
功能: 完成对操作数按位求反运算(即0变1,1变0),结果关回原操作数.
----