jankos/tests.c

14 lines
345 B
C

// Module for testing drivers and other things
#include "stlio.h"
#include "tests.h"
#include "serial.h"
void test_write() {
clear_fb();
char* msg1 = "Imagine literally not \nwriting your own os";
serial_write((signed char*)msg1, strlen(msg1));
serial_write((signed char*)msg1, strlen(msg1));
//write(msg1, strlen(msg1));
printf(msg1);
}