Files
Upsilon/ion/include/ion/framebuffer.h
Felix Raimundo 411e983ccf Final pass at removing the warnings.
Change-Id: I4cd0276c97112e69fe2449c8db5eaaa1c186dfb6
2016-03-23 11:42:32 +01:00

12 lines
193 B
C

#ifndef ION_FRAMEBUFFER_H
#define ION_FRAMEBUFFER_H
#include <stdint.h>
void ion_set_pixel(uint16_t x, uint16_t y, uint8_t color);
#define SCREEN_WIDTH 320
#define SCREEN_HEIGHT 240
#endif