代码搜索:熔丝位

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

代码结果 10,000
www.eeworm.com/read/472556/6870102

cpp des.cpp

#include using namespace std; #define BIT bool #define BYTE unsigned char class Des { private: BIT subKey[16][48]; // 16圈子密钥 static BYTE Etable[48]; // E位选择表 static BYT
www.eeworm.com/read/472556/6870108

cpp des.cpp

#include using namespace std; #define BIT bool #define BYTE unsigned char class Des { private: BIT subKey[16][48]; // 16圈子密钥 static BYTE Etable[48]; // E位选择表 static BYT
www.eeworm.com/read/293698/8278253

c initializing.c

#include "F2407REGS_c.h" extern signed int U_data_in[320]; // 10个周波AD采样数据,为16位2的补码 /************************************************************************* 文件名: DSP2407_Initializing() 日期:
www.eeworm.com/read/370674/9587739

h at24c64.h

#include "DS1302.H" #include "math.h" #define uchar unsigned char #define uint unsigned int sbit SDA = P1^3; /* iic数据传送位 */ sbit SCL = P1^2;
www.eeworm.com/read/174062/9610045

c ch12_3.c

/*CH12_3*/ /*按位异或运算*/ #include main() { int x=9,y=5,z; z=x^y; printf("x=%d\ny=%d\nx=%d\n",x,y,z); }
www.eeworm.com/read/368391/9697725

h membitmap.h

#ifndef WMEMBITMAP #define WMEMBITMAP #include "math.h" #define PIE 3.1415925 //支持按位取数据的操作,返回字节 class BitData { public: BYTE *Data; long int BytePtr; long int BufLen; int BitPtr; BO
www.eeworm.com/read/368314/9702158

c lpc_main.c

//这一段无需改动 #ifndef TRUE #define TRUE 1 #endif #ifndef FALSE #define FALSE 0 #endif typedef unsigned char uint8; /* 无符号8位整型变量 */ typedef signed c
www.eeworm.com/read/267707/11167649

asp compact.asp

www.eeworm.com/read/267427/11179188

java bitoperation.java

/* *测试位的四种运算 */ public class BitOperation { public static void main(String[] args) { int a = 15; int b = 2; int x = a & b; int y = a | b; int z = a ^ b; int r = ~x; System
www.eeworm.com/read/411727/11231084

h config.h

//这一段无需改动 #ifndef TRUE #define TRUE 1 #endif #ifndef FALSE #define FALSE 0 #endif typedef unsigned char uint8; /* 无符号8位整型变量 */ typedef signed c