summaryrefslogtreecommitdiff
path: root/src/include/klog.h
blob: 1a6d3af6848f41e644ff61b8b5d0a552fab9d59b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef _SERIAL_H_
#define _SERIAL_H_

#include <stdint.h>
#include <stdbool.h>





void init_klog();
void serial_out(uint16_t port, char *string);
void _putchar_serial(uint16_t port, char character);
void move_cursor(unsigned int x, unsigned int y);


void clear_screen();


#endif