16 lines
306 B
C
16 lines
306 B
C
#include <stdio.h>
|
|
#include <stdint.h>
|
|
|
|
uint8_t nor_gate(uint8_t a, uint8_t b){
|
|
return ~(((a >> 0) & 0x01) | ((b >> 0) & 0x01)) & 0x01 << 0;
|
|
}
|
|
|
|
#include <assert.h>
|
|
int main(){
|
|
for (int i = 0; i < 2; i++){
|
|
for (int j = 0; j < 2; j++){
|
|
assert(!(i | j) == nor_gate(i,j));
|
|
}
|
|
}
|
|
return 0;
|
|
} |