matos/tests/test.c

12 lines
179 B
C

#include "serial.h"
#include "vga.h"
void run_test(){
printf("Testing Serial");
serialWrite('h');
serialWrite('e');
serialWrite('l');
serialWrite('l');
serialWrite('o');
}