diff options
Diffstat (limited to '')
-rw-r--r-- | include/bochs.h | 11 |
1 files changed, 11 insertions, 0 deletions
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 <stdint.h> +#include <stdint.h> + +/** + * 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); |