diff options
author | Freya Murphy <freya@freyacat.org> | 2025-04-17 00:51:46 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-04-17 00:51:46 -0400 |
commit | f3e6838b44a5b37ce7664db5b8662e3d02e5f539 (patch) | |
tree | e97eeeabab78ba2c84d3b0069c8db9911cd021b2 /kernel/main.c | |
parent | fmt (diff) | |
download | comus-f3e6838b44a5b37ce7664db5b8662e3d02e5f539.tar.gz comus-f3e6838b44a5b37ce7664db5b8662e3d02e5f539.tar.bz2 comus-f3e6838b44a5b37ce7664db5b8662e3d02e5f539.zip |
font rending in framebuffer yay!!
Diffstat (limited to 'kernel/main.c')
-rw-r--r-- | kernel/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kernel/main.c b/kernel/main.c index f600320..99954d6 100644 --- a/kernel/main.c +++ b/kernel/main.c @@ -5,6 +5,7 @@ #include <comus/drivers.h> #include <comus/drivers/acpi.h> #include <comus/drivers/pci.h> +#include <comus/drivers/gpu.h> #include <comus/fs.h> #include <lib.h> @@ -14,6 +15,7 @@ void kreport(void) memory_report(); acpi_report(); pci_report(); + gpu_report(); } void main(long magic, volatile void *mboot) |