代码搜索:Bit
找到约 10,000 项符合「Bit」的源代码
代码结果 10,000
www.eeworm.com/read/475347/6796737
m encode_bit.m
function [output, state] = encode_bit(g, input, state)
% This function takes as an input a single bit to be encoded,
% as well as the coeficients of the generator polynomials and
% the current
www.eeworm.com/read/472486/6868787
bit lcd_top.bit
www.eeworm.com/read/472558/6870170
m bit_symbol.m
function [alphabet] = bit_symbol(M,type,M1,M2)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%
www.eeworm.com/read/195211/8168398
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/195211/8168409
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/394872/8204674
vhd bit_processor.vhd
--************************************************************************************************
-- "Bit processor" for AVR core
-- Version 1.01
-- Designed by Ruslan Lepetenok
-- Modified 03.11.200
www.eeworm.com/read/294713/8210586
obj iic_bit.obj
www.eeworm.com/read/294713/8210603
c iic_bit.c
#define IIC_READ 0XA1 //定义读指令
#define IIC_WRITE 0XA0 //定义写指令
#define NOP _nop_()
#define uchar unsigned char
#define uint unsigned int
#include "reg52.h"
#define IIC_READ 0XA1 //定义读指令
www.eeworm.com/read/294713/8210616
lst iic_bit.lst
C51 COMPILER V7.50 IIC_BIT 10/30/2007 19:00:59 PAGE 1
C51 COMPILER V7.50, COMPILATION OF MODULE IIC_BIT
OBJECT MODULE PLACED IN
www.eeworm.com/read/294608/8216956