MCPcopy Create free account
hub / github.com/Bareflank/hypervisor / bfdebug_x64

Function bfdebug_x64

loader/tests/include/debug.h:98–102  ·  view source on GitHub ↗

* <!-- description --> * @brief Outputs a string and an 64bit hex to the console * * <!-- inputs/outputs --> * @param str the string to output * @param val the 64bit hex value to output */

Source from the content-addressed store, hash-verified

96 * @param val the 64bit hex value to output
97 */
98static inline void
99bfdebug_x64(char const *const str, uint64_t const val) NOEXCEPT
100{
101 printf("[BAREFLANK DEBUG] %s: 0x%" PRIx64 "\n", str, val);
102}
103
104/**
105 * <!-- description -->

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected