代码搜索:Bit

找到约 10,000 项符合「Bit」的源代码

代码结果 10,000
www.eeworm.com/read/216014/15029463

m encode_bit.m

function [output, state] = encode_bit(g, input, state) % Copyright 1996 Matthew C. Valenti % MPRG lab, Virginia Tech % for academic use only % This function takes as an input a single bit to be encod
www.eeworm.com/read/114598/15046522

c bit_xor.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/114598/15046542

c bit_inv.c

#include void main () { int value = 0xFF; printf("The inverse of %X is %X\n", value, ~value); }
www.eeworm.com/read/215073/15075572

bit board_cpu.bit

www.eeworm.com/read/214207/15110238

tdf prbs_bit.tdf

--以下的程序是按比特方式产生伪随机图案,对于该程序中不同图案的选择采用不同的使能信号来控制 --//////////////////////////////////////////////////////////////////////////////////////////////////////////// // 该电路为按比特方式产生伪随机码电路;
www.eeworm.com/read/214051/15115032

m bit_vector.m

function v = bit_vector(indices,l) % v = bit_vector(indices,l) if ~exist('l','var'), l= max(indices); end v=zeros(l,1); v(indices)=1;
www.eeworm.com/read/211954/15169506

cpp 1361bit.cpp

#include #include using namespace std; struct node { int sn; int d; }; queue< node >qu; char u[1
www.eeworm.com/read/210806/15192059

v bit_op.v

module bit_op(); reg [3:0] a, b, c; initial begin a=4'b0011; b=4'b1101; c=4'b1010; $display (~a); //display 4'b1100 = 12 $display (a&b); //display 4'b0001 = 1 $display (a|c); /
www.eeworm.com/read/210235/15203081

bit led_water.bit

www.eeworm.com/read/209499/15218193

m encode_bit.m

function [output, state] = encode_bit(g, input, state) % Copyright 1996 Matthew C. Valenti % MPRG lab, Virginia Tech % for academic use only % This function takes as an input a single bit to be encod