代码搜索:Byte

找到约 10,000 项符合「Byte」的源代码

代码结果 10,000
www.eeworm.com/read/326402/13143629

Ȧ

// wm_bitio.h #ifndef _WIX_WM_BITIO_H_01_ #define _WIX_WM_BITIO_H_01_ // 取log2(n)的upper_bound int UpperLog2(int n); // 取log2(n)的lower_bound int LowerLog2(int n); // 将位指针*piByte(字节偏移),
www.eeworm.com/read/325866/13179119

asm bcd2bin.asm

; ;************************************************************************ ; BCD To Binary Conversion ; ; This routine converts a 5 digit BCD number to a 16 bit binary ; numb
www.eeworm.com/read/325866/13179194

asm b16tobcd.asm

; ;******************************************************************** ; Binary To BCD Conversion Routine ; This routine converts a 16 Bit binary Number to a 5 Digit ; BCD N
www.eeworm.com/read/240595/13212077

c x4045.c

/* x5045接口程序 */ #include #define uchar unsigned char #define uint unsigned int // IO口定义 sbit SDI = P3^0; //X5045的数据输入线 sbit SDO = P3^1; //X5045的数据输出线 sbit CSWDT =
www.eeworm.com/read/138125/13258177

c fiq.c

// fiq.c /********************************************************************/ /* */ /* FIQ ISR
www.eeworm.com/read/138125/13258183

bak fiq.bak

// fiq.c /********************************************************************/ /* */ /* FIQ ISR
www.eeworm.com/read/138044/13270142

asm bcd2bin.asm

; ;************************************************************************ ; BCD To Binary Conversion ; ; This routine converts a 5 digit BCD number to a 16 bit binary ; numb
www.eeworm.com/read/138044/13270205

asm b16tobcd.asm

; ;******************************************************************** ; Binary To BCD Conversion Routine ; This routine converts a 16 Bit binary Number to a 5 Digit ; BCD N
www.eeworm.com/read/137900/13280833

txt ds18b20应用子程序.txt

晶体12M 89C52单片机 DS18B20传感器检测正温度的应用子程序 #include #define NOP_1uS _nop_(); sbit DQ =P3^2; void delay_20us(unsigned char n) { while(n--) { NOP_1uS;NOP_1uS;NOP_1uS; N
www.eeworm.com/read/239299/13290457

java tgssocket.java

/** * TGS服务器端 */ package src; import java.io.*; import java.net.*; import java.security.*; public class TGSSocket { private Socket clientSocket; private ServerSocket serverSocket; p