MCPcopy Create free account
hub / github.com/davidgiven/fluxengine / rol

Function rol

arch/fb100/decoder.cc:61–67  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

59 */
60
61static void rol(uint8_t& b, bool& c)
62{
63 bool newc = b & 0x80;
64 b <<= 1;
65 b |= c;
66 c = newc;
67}
68
69static uint16_t checksum(const Bytes& bytes)
70{

Callers 1

checksumFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected