代码搜索:Bit
找到约 10,000 项符合「Bit」的源代码
代码结果 10,000
www.eeworm.com/read/481239/6645402
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/481239/6645413
c bit_inv.c
#include
void main ()
{
int value = 0xFF;
printf("The inverse of %X is %X\n", value, ~value);
}
www.eeworm.com/read/480650/6667342
txt 8bit.txt
-- 8-bit Identity Comparator
-- uses 1993 std VHDL
-- download from www.pld.com.cn & www.fpga.com.cn
library IEEE;
use IEEE.Std_logic_1164.all;
entity HCT688 is
port(Q, P : in std_logic_v
www.eeworm.com/read/477064/6744984
gif 4bit.gif
www.eeworm.com/read/476355/6757999
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/476355/6758010
c bit_inv.c
#include
void main ()
{
int value = 0xFF;
printf("The inverse of %X is %X\n", value, ~value);
}
www.eeworm.com/read/264994/11287257
_c bit_main._c
www.eeworm.com/read/264890/11295761
c bit_rate.c
/*
* Terry,2004/3/25 04:10PM
*/
#include "bit_rate.h"
#include "global.h"
#include "util.h"
#include "atapi_if.h"
#include "image.h"
#include "kinf.h"
#include "stc.h"
#ifndef DVDRELEAS
www.eeworm.com/read/409272/11337696
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 ^