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

Function bferror_d8

loader/tests/include/debug.h:251–255  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

249 * @param val the 8bit dec value to output
250 */
251static inline void
252bferror_d8(char const *const str, uint8_t const val) NOEXCEPT
253{
254 printf("[BAREFLANK ERROR] %s: %" PRId32 "\n", str, (uint32_t)val);
255}
256
257/**
258 * <!-- description -->

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected