mirror of
https://git.stationery.faith/corn/corn.git
synced 2024-11-10 03:22:08 +00:00
11 lines
240 B
C
11 lines
240 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
|
|
*/
|
|
volatile uint32_t *bochs_init(uint16_t w, uint16_t h, uint8_t b);
|