mirror of
https://github.com/ehw-fit/ariths-gen.git
synced 2025-04-22 14:51:22 +01:00
6 lines
113 B
C
6 lines
113 B
C
#include <stdio.h>
|
|
#include <stdint.h>
|
|
|
|
uint8_t not_gate(uint8_t _a){
|
|
return ~((_a >> 0) & 0x01) & 0x01 << 0;
|
|
} |