From 90a6065691beee52bf5309916fba98f7580d27be Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Sat, 3 Feb 2024 00:50:07 -0500 Subject: refactor, new arch dirs, (wip) page alloc on write, hsv screen (convert to userspace later), other fixes --- include/bochs.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 include/bochs.h (limited to 'include/bochs.h') diff --git a/include/bochs.h b/include/bochs.h new file mode 100644 index 0000000..4aa933e --- /dev/null +++ b/include/bochs.h @@ -0,0 +1,11 @@ +#pragma once + +#include +#include + +/** + * Loads the framebuffer + * @param width - the width of the screen + * @param height - the height of the screen + */ +uint32_t *bochs_init(uint16_t w, uint16_t h, uint8_t b); -- cgit v1.2.3-freya