blob: 4aa933e61211e73e4b0b3b955f87a2193b454d45 (
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
*/
uint32_t *bochs_init(uint16_t w, uint16_t h, uint8_t b);
|