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

Function bferror_x8

loader/tests/include/debug.h:195–199  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

193 * @param val the 8bit hex value to output
194 */
195static inline void
196bferror_x8(char const *const str, uint8_t const val) NOEXCEPT
197{
198 printf("[BAREFLANK ERROR] %s: 0x%" PRIx32 "\n", str, (uint32_t)val);
199}
200
201/**
202 * <!-- description -->

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected