jankos/tests.c

9 lines
159 B
C

// Module for testing drivers and other things
#include "tests.h"
void test_write() {
clear_fb();
s8* msg1 = (s8*)"big yeet";
write(msg1, sizeof(msg1));
}