Kernel: Implement basic framebuffer device

This allows exposing framebuffer to userspace
This commit is contained in:
2023-11-22 20:34:00 +02:00
parent 25485069e6
commit cdf53f33f6
4 changed files with 180 additions and 0 deletions

View File

@@ -16,6 +16,7 @@ set(KERNEL_SOURCES
kernel/CPUID.cpp
kernel/Debug.cpp
kernel/Device/Device.cpp
kernel/Device/FramebufferDevice.cpp
kernel/Device/NullDevice.cpp
kernel/Device/ZeroDevice.cpp
kernel/Errors.cpp