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

Function bfdebug_d16

loader/tests/include/debug.h:126–130  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

124 * @param val the 16bit dec value to output
125 */
126static inline void
127bfdebug_d16(char const *const str, uint16_t const val) NOEXCEPT
128{
129 printf("[BAREFLANK DEBUG] %s: %" PRId32 "\n", str, (uint32_t)val);
130}
131
132/**
133 * <!-- description -->

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected