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

Function bfdebug_x32

loader/tests/include/debug.h:84–88  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

82 * @param val the 32bit hex value to output
83 */
84static inline void
85bfdebug_x32(char const *const str, uint32_t const val) NOEXCEPT
86{
87 printf("[BAREFLANK DEBUG] %s: 0x%" PRIx32 "\n", str, val);
88}
89
90/**
91 * <!-- description -->

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected