代码搜索:Bit
找到约 10,000 项符合「Bit」的源代码
代码结果 10,000
www.eeworm.com/read/236153/14030410
class bit.class
www.eeworm.com/read/204914/15331573
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/204914/15331582
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/203672/15353785
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/203672/15353786
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/203672/15353789
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/203672/15353790
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/113901/15444617
c bit.c
// --------------- BIT ROUTINES ---------------
// wavelet image compression
// these provide bit-access to files either on disk or in memory
// (c) 2001-2002 Daniel Vollmer (maven@maven.de)
/*
www.eeworm.com/read/113901/15444618
h bit.h
#ifndef _BIT_H_INCLUDED
#define _BIT_H_INCLUDED
#include
#ifdef WAVELET_DLL
#define WAVELET_DLL_API __declspec(dllexport)
#define WAVELET_DLL_CC
#else
#define WAVELET_DLL_API