== Files == ocarina/include/ print.h == Depends == install Printing: (include/print.h> Sometimes text needs to be printed to the screen so users (or debuggers) know what is going on. Enabling dprint() when CONFIG_TEST is enabled means I will only need a single test.good file for output comparing. API: void print(string fmt, ...) Print text to the screen. void dprint(string fmt, ...) Print text to the screen when debugging or testing is enabled.