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

Function bferror_d16

loader/tests/include/debug.h:265–269  ·  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

263 * @param val the 16bit dec value to output
264 */
265static inline void
266bferror_d16(char const *const str, uint16_t const val) NOEXCEPT
267{
268 printf("[BAREFLANK ERROR] %s: %" PRId32 "\n", str, (uint32_t)val);
269}
270
271/**
272 * <!-- description -->

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected