Luna/kernel/include/fs/devices/Serial.h
apio eb03ae91e0 Devices: Add a new Serial device
This device permits userspace to interface with the serial port.
2022-10-12 10:44:30 +02:00

9 lines
174 B
C++

#pragma once
#include "fs/VFS.h"
namespace SerialDevice
{
VFS::Node* create_new();
ssize_t write(VFS::Node* node, size_t offset, size_t size, const char* buffer);
}