mirror of
https://git.stationery.faith/corn/corn.git
synced 2024-11-09 16:42:08 +00:00
11 lines
231 B
C
11 lines
231 B
C
#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);
|