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

Function bfdebug_d32

loader/tests/include/debug.h:140–144  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

138 * @param val the 32bit dec value to output
139 */
140static inline void
141bfdebug_d32(char const *const str, uint32_t const val) NOEXCEPT
142{
143 printf("[BAREFLANK DEBUG] %s: %" PRId32 "\n", str, val);
144}
145
146/**
147 * <!-- description -->

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected