代码搜索:Bit
找到约 10,000 项符合「Bit」的源代码
代码结果 10,000
www.eeworm.com/read/399878/7828905
plg bit.plg
礦ision2 Build Log
Project:
D:\MyData\其它\我的文章\C51\c\p7_3_1\bit.uv2
Project File Date: 11/06/2003
Output:
www.eeworm.com/read/399878/7828907
lst bit.lst
C51 COMPILER V7.01 BIT 11/06/2003 21:34:54 PAGE 1
C51 COMPILER V7.01, COMPILATION OF MODULE BIT
OBJECT MODULE PLACED IN bit
www.eeworm.com/read/399878/7828914
opt bit.opt
### uVision2 Project, (C) Keil Software
### Do not modify !
cExt (*.c)
aExt (*.a*; *.src)
oExt (*.obj)
lExt (*.lib)
tExt (*.txt)
pExt (*.plm)
CppX (*.cpp)
DaveTm { 0,0,0,0,0,0,0,0 }
www.eeworm.com/read/399878/7828917
c bit.c
#include
void main(void)
{
unsigned int a;
unsigned int b;
unsigned char temp; //临时变量
P1 = 0xAA; //点亮D1,D3,D5,D7 P1口的二进制为10101010,为0时点亮LED
for (a=0;a
www.eeworm.com/read/299701/7838472
bit pa.bit
www.eeworm.com/read/199560/7845343
h bit.h
/*
* libmad - MPEG audio decoder library
*/
# ifndef LIBMAD_BIT_H
# define LIBMAD_BIT_H
struct mad_bitptr {
unsigned char const *byte;
unsigned short cache;
unsigned short left;
}
www.eeworm.com/read/199560/7845464
c bit.c
/*
* libmad - MPEG audio decoder library
*/
# ifdef HAVE_CONFIG_H
# include "config.h"
# endif
# include "global.h"
# ifdef HAVE_LIMITS_H
# include
# else
# define C
www.eeworm.com/read/298428/7961640
c bit_and.c
#include
void main ()
{
printf("0 & 0 is %d\n", 0 & 0);
printf("0 & 1 is %d\n", 0 & 1);
printf("1 & 1 is %d\n", 1 & 1);
printf("1 & 2 is %d\n", 1 & 2);
printf("15 &
www.eeworm.com/read/298428/7961661
c bit_or.c
#include
void main ()
{
printf("0 | 0 is %d\n", 0 | 0);
printf("0 | 1 is %d\n", 0 | 1);
printf("1 | 1 is %d\n", 1 | 1);
printf("1 | 2 is %d\n", 1 | 2);
printf("128 |
www.eeworm.com/read/297989/7982638