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

Function serial_write

loader/src/serial_write.c:38–46  ·  view source on GitHub ↗

* <!-- description --> * @brief Writes a string to the serial. Note that you must initialize * the serial before you can use it. * * <!-- inputs/outputs --> * @param str the string to write to the serial. */

Source from the content-addressed store, hash-verified

36 * @param str the string to write to the serial.
37 */
38void
39serial_write(char const *const str) NOEXCEPT
40{
41 uint64_t mut_i;
42
43 for (mut_i = ((uint64_t)0); '\0' != str[mut_i]; ++mut_i) {
44 serial_write_c(str[mut_i]);
45 }
46}

Callers 15

bfdebugFunction · 0.50
bfdebug_x8Function · 0.50
bfdebug_x16Function · 0.50
bfdebug_x32Function · 0.50
bfdebug_x64Function · 0.50
bfdebug_d8Function · 0.50
bfdebug_d16Function · 0.50
bfdebug_d32Function · 0.50
bfdebug_d64Function · 0.50
bfdebug_ptrFunction · 0.50
bferrorFunction · 0.50
bferror_x8Function · 0.50

Calls 1

serial_write_cFunction · 0.50

Tested by

no test coverage detected