ocarina/design/print.txt

18 lines
434 B
Plaintext

== Files ==
ocarina/include/
print.h
== Depends ==
error
Printing: (include/print.h>
Sometimes text needs to be printed to the screen so users (or debuggers)
can trace what is going on.
API:
void print(string fmt, ...);
void dprint(string fmt, ...);
Print text to the screen. The dprint() option will only only
be implemented when when CONFIG_DEBUG or CONFIG_TEST is enabled,
and will be an empty function otherwise.