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

Function debug_ring_write

kernel/mocks/debug_ring_write.hpp:44–49  ·  view source on GitHub ↗

<!-- description --> @brief Outputs a character to the serial port. <!-- inputs/outputs --> @param ring the debug ring to output to @param c the character to output

Source from the content-addressed store, hash-verified

42 /// @param c the character to output
43 ///
44 constexpr void
45 debug_ring_write(loader::debug_ring_t const &ring, bsl::char_type const c) noexcept
46 {
47 bsl::discard(ring);
48 bsl::discard(c);
49 }
50
51 /// <!-- description -->
52 /// @brief Outputs a string to the serial port.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected