chore: add 0th bit test
This commit is contained in:
parent
490ad2847c
commit
bcf29a697f
25
bit-ops.c
25
bit-ops.c
@ -1,7 +1,11 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
|
void zeroth_bit_test();
|
||||||
|
|
||||||
|
unsigned char PTAD;
|
||||||
|
|
||||||
void do_bit_ops() {
|
void do_bit_ops() {
|
||||||
unsigned char PTAD = 0x10;
|
PTAD = 0x10;
|
||||||
printf("PTAD = %#x\n* OR\n", PTAD);
|
printf("PTAD = %#x\n* OR\n", PTAD);
|
||||||
PTAD |= 0x01;
|
PTAD |= 0x01;
|
||||||
printf("PTAD |= 0x01 --> %#010x (%#x)\n", PTAD, PTAD);
|
printf("PTAD |= 0x01 --> %#010x (%#x)\n", PTAD, PTAD);
|
||||||
@ -20,6 +24,25 @@ void do_bit_ops() {
|
|||||||
printf("PTAD = %#x\n", PTAD=0x10);
|
printf("PTAD = %#x\n", PTAD=0x10);
|
||||||
PTAD ^= 0xfe;
|
PTAD ^= 0xfe;
|
||||||
printf("PTAD ^= 0xfe --> %#010x (%#x)\n", PTAD, PTAD);
|
printf("PTAD ^= 0xfe --> %#010x (%#x)\n", PTAD, PTAD);
|
||||||
|
|
||||||
|
zeroth_bit_test();
|
||||||
|
}
|
||||||
|
|
||||||
|
void zeroth_bit_test() {
|
||||||
|
PTAD = 0x10;
|
||||||
|
printf("----------\n* 0th bit test\n");
|
||||||
|
for (PTAD = 0x00; PTAD < 0x0a; PTAD++){
|
||||||
|
printf("PTAD = %u (", PTAD);
|
||||||
|
for (int i = 0; i < 8; i++) {
|
||||||
|
printf("%d", !!((PTAD << i) & 0x80));
|
||||||
|
}
|
||||||
|
printf(")\n");
|
||||||
|
if ( PTAD & 0x01 ) {
|
||||||
|
printf("0th bit is 1\n");
|
||||||
|
} else {
|
||||||
|
printf("0th bit is 0\n");
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user