代码搜索:Bit
找到约 10,000 项符合「Bit」的源代码
代码结果 10,000
www.eeworm.com/read/127621/14346612
bit liu_res.bit
www.eeworm.com/read/228099/14400707
vhd bit_processor.vhd
--************************************************************************************************
-- "Bit processor" for AVR core
-- Version 1.01
-- Designed by Ruslan Lepetenok
-- Modified 03.11
www.eeworm.com/read/126308/14433546
c bit2.c
# include
void main()
{
unsigned a, b, c, d;
int n;
a = 64;
n = 2;
/* 将操作数a右移(6-n)位 */
b = a >> (6-n);
printf("b = %d\n", b);
/* 将操作数a左移n位 */
c = a
www.eeworm.com/read/126308/14433569
c bit1.c
# include
void main()
{
/* 定义了一个无符号字符型变量,此变量只能用来存储无符号数 */
unsigned char result;
int a, b, c, d;
a = 2;
b = 4;
c = 6;
d = 8;
/* 对变量进行“按位与”操作 */
result = a & c;
www.eeworm.com/read/125879/14456714
c bit1024.c
/*
* Copyright (c) 2001 Mark Fullmer and The Ohio State University
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted prov
www.eeworm.com/read/226464/14464723
counter(4_bit)
www.eeworm.com/read/125059/14515354
asm bit_rev.asm
*********************************************************************************
* (C) COPYRIGHT TEXAS INSTRUMENTS, INC. 1996 *
**********************************
www.eeworm.com/read/125059/14515361
lst bit_rev.lst
TMS320C54x COFF Assembler Beta Version 1.16 Mon Sep 23 13:58:56 1996
Copyright (c) 1996 Texas Instruments Incorporated
bit_rev.asm
www.eeworm.com/read/125059/14515368
obj bit_rev.obj
www.eeworm.com/read/124944/14523170
c bit_input.c
/* BIT INPUT ROUTINES. */
#include
/* THE BIT BUFFER. */
static int buffer; /* Bits waiting to be input */
static int bits_to_go; /* Number of bits still in buffer