/******************************************************************************
Welcome to GDB Online.
GDB online is an online compiler and debugger tool for C, C++, Python, PHP, Ruby,
C#, OCaml, VB, Perl, Swift, Prolog, Javascript, Pascal, COBOL, HTML, CSS, JS
Code, Compile, Run and Debug online from anywhere in world.
*******************************************************************************/
#include <stdio.h>
#include <stdint.h>
int main()
{
printf("Not 0b111<<2 = %b\n", (uint8_t)(~(0b111<<2)));
int reg = 0b10101010;
int new_reg = reg & ~(0b111<<2);// | (0b101<<2);
printf("register = %b\n", reg);
printf("register = %b\n", new_reg);
new_reg = new_reg | (0b101<<2);
printf("register = %b\n", new_reg);
return 0;
}