Move headers to include/

This commit is contained in:
2026-03-18 11:48:33 +01:00
parent a1e8aacd01
commit f7735eb3a4
45 changed files with 89 additions and 88 deletions
+1 -1
View File
@@ -5,7 +5,7 @@
*/
#include <kernel.h>
#include "serial.h"
#include <io/serial/serial.h>
extern struct init_status init;
-20
View File
@@ -1,20 +0,0 @@
/*
* @author xamidev <xamidev@riseup.net>
* @brief Debug serial driver
* @license GPL-3.0-only
*/
#ifndef SERIAL_H
#define SERIAL_H
// COM1
#define PORT 0x3F8
void outb(int port, unsigned char data);
unsigned char inb(int port);
int serial_init(void);
void skputs(const char* str);
void skputc(char c);
#endif