วันอังคารที่ 13 มีนาคม พ.ศ. 2561

AND Bitwise Operators AND Gate แอนด์ เครื่องหมายดำเนินการทางบิท แอนด์เกท












AND Bitwise Operators AND Gate แอนด์ เครื่องหมายดำเนินการทางบิท แอนด์เกท 
13/3/2561 SONGCHAI PRAPATRUNGSEE
AND Bitwise Operators AND Gate แอนด์ เครื่องหมายดำเนินการทางบิท แอนด์เกท 

เครื่องหมายดำเนินการทางบิท & (AND) กำหนด a=6 (0110), b=3 (0011)
บิท
การทำงาน
ตัวอย่าง

&
แอนด์ AND
a & b = 2
1 แอนด์อะไรก็ได้ค่าตามที่มาแอนด์
0 แอนด์อะไรก็ได้ 0

แอนด์เกท AND GATE
     input
   output

     A     B
     Q

0           0
0           1
1           0
1     1
     0
     0
     0
     1
  
   A                         Q
  
   B

0  1  1  0    operand1 = 6
0  0  1  1    operand2  =3
-----------
0  0  1  0    (operand1 & operand2) = 2
///////////////////////////////////////////////////////////////////////////
/* 13/3/2561
 & Bitwise Operators
 */

#include <REGX51.H> //REGISTER 51 Header file

void main(void)
{
        unsigned char a=6,b=3;
  while (1)
        {
          a = a & b ;
  }
}
//////////////////////////////////////////////////////////////////////
Description
The bitwise AND operator in C++ is a single ampersand &, used between two other integer expressions. Bitwise AND operates on each bit position of the surrounding expressions independently, according to this rule: if both input bits are 1, the resulting output is 1, otherwise the output is 0.
Another way of expressing this is:
0  0  1  1    operand1
0  1  0  1    operand2
----------
0  0  0  1    (operand1 & operand2) - returned result
In Arduino, the type int is a 16-bit value, so using & between two int expressions causes 16 simultaneous AND operations to occur.
Example Code
In a code fragment like:
int a =  92;    // in binary: 0000000001011100
int b = 101;    // in binary: 0000000001100101
int c = a & b;  // result:    0000000001000100, or 68 in decimal.
Each of the 16 bits in a and b are processed by using the bitwise AND, and all 16 resulting bits are stored in c, resulting in the value 01000100 in binary, which is 68 in decimal.
One of the most common uses of bitwise AND is to select a particular bit (or bits) from an integer value, often called masking. See below for an example
PORTD = PORTD & B00000011;  // clear out bits 2 - 7, leave pins 0 and 1 untouched (xx & 11 == xx)


ไม่มีความคิดเห็น: