blob: f17b4689ef2ad3e6c80e198d8e7cd586405d3176 (
plain)
1
2
3
4
5
6
7
8
9
10
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
*/
volatile uint32_t *bochs_init(uint16_t w, uint16_t h, uint8_t b);
|