8 lines
203 B
C
8 lines
203 B
C
#ifndef KARLOS_SERIAL_H
|
|
#define KARLOS_SERIAL_H
|
|
|
|
void serial_write_char(char c);
|
|
// use in core which has panicked; all other serial output is suppressed
|
|
void serial_write_char_panicked(char c);
|
|
|
|
#endif
|