10 lines
174 B
C
10 lines
174 B
C
// Module for testing drivers and other things
|
|
#include "stlio.h"
|
|
#include "tests.h"
|
|
|
|
void test_write() {
|
|
clear_fb();
|
|
char* msg1 = "bigyeet";
|
|
write(msg1, strlen(msg1));
|
|
}
|