20 lines
527 B
C++
20 lines
527 B
C++
#ifndef DUMPBITS_H
|
|
#define DUMPBITS_H
|
|
#include <iostream>
|
|
|
|
// dump bits low to high
|
|
inline void dumpbits_always(uint64_t v, const std::string &msg) {
|
|
for (uint32_t i = 0; i < 64; i++) {
|
|
std::cout << (((v >> static_cast<uint64_t>(i)) & 0x1ULL) ? "1" : "_");
|
|
}
|
|
std::cout << " " << msg.c_str() << "\n";
|
|
}
|
|
|
|
inline void dumpbits32_always(uint32_t v, const std::string &msg) {
|
|
for (uint32_t i = 0; i < 32; i++) {
|
|
std::cout << (((v >> i) & 0x1ULL) ? "1" : "_");
|
|
}
|
|
std::cout << " " << msg.c_str() << "\n";
|
|
}
|
|
#endif
|