代码搜索:Bit
找到约 10,000 项符合「Bit」的源代码
代码结果 10,000
www.eeworm.com/read/169721/9844970
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/169721/9844989
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/364815/9893469
counter(4_bit)
www.eeworm.com/read/168678/9902152
m bit_syn.m
clear;
Rb=5000000/31;%信息数据速率
lc=31;%一个信息数据扩频成31个码元。扩频增益13dB
Rc=Rb*lc;%码元速率
L=13;%每个码元里sin信号的周期个数
fc=Rc*L; %载波频率
Q=4;%每个码元中采样个数
fs=Rc*Q;%采样频率
ts=1/fs;%每个取样点的时间间隔
data_number=30;%信息数据的个数
www.eeworm.com/read/167540/9964067
o c-bit.o
www.eeworm.com/read/167540/9964085
s c-bit.s
# start of the file
.include "defines.h" # system call numbers
.include "c-bit.literals" # include the string literal file
.global _start
.bss
.align 4
_data:
.text
.align 4
_start:
pushl %
www.eeworm.com/read/167540/9964248
literals c-bit.literals
# this is the file of string literals
literal0: .string "a = "
len0 = . - literal0
www.eeworm.com/read/363231/9964606
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 state
www.eeworm.com/read/167140/9979913
asm bit_rev.asm
*********************************************************************************
* (C) COPYRIGHT TEXAS INSTRUMENTS, INC. 1996 *
**********************************