summaryrefslogtreecommitdiffstats
path: root/sw/z80/kernel/kernel.c
blob: 3d5aeb67918cb44cb255ea4bd96b05ce0aba97df (plain)
1
2
3
4
5
6
7
#include "types.h"
#include "usart.h"

void kmain(void)
{
    usart_init(USART_BAUDRATE_9600, USART_PARITY_EVEN, USART_STOP_BITS_1);
}