Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/CE-Programming/CEmu
/ parity
Function
parity
core/registers.c:22–27 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
20
#include
"registers.h"
21
22
int parity(uint8_t x) {
23
x ^= x >> 4;
24
x ^= x >> 2;
25
x ^= x >> 1;
26
return x & 1;
27
}
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected