1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 09:27:45 +00:00

Kernel: Implement serial port driver

This implements a basic 8250 UART serial port driver. It does not
currently handle (or enable) interrupts, nor any runtime configuration.
This commit is contained in:
Conrad Pankoff 2019-06-08 23:24:34 +10:00 committed by Andreas Kling
parent 7b04c7dc48
commit 8b1154f5f2
5 changed files with 244 additions and 0 deletions

View file

@ -38,6 +38,7 @@ KERNEL_OBJS = \
Devices/BXVGADevice.o \
PCI.o \
Devices/PS2MouseDevice.o \
Devices/SerialDevice.o \
Net/Socket.o \
Net/LocalSocket.o \
Net/IPv4Socket.o \