matos/drivers/serial.h

7 lines
134 B
C
Raw Normal View History

2018-11-08 21:11:45 +01:00
#pragma once
#include "irq.h"
2018-11-08 21:11:45 +01:00
2018-11-08 22:08:27 +01:00
void serialSetup(int speed);
2019-05-17 09:57:14 +02:00
void serialPutc(char a);
2018-11-08 22:08:27 +01:00
void serialDoIrq(struct interrupt_frame *frame);