Multiple platform support

This commit is contained in:
Romain Goyet
2015-08-03 21:04:13 +02:00
parent 6e602c514b
commit 067c53d705
51 changed files with 268 additions and 119 deletions

18
ion/include/ion.h Normal file
View File

@@ -0,0 +1,18 @@
#ifndef ION_ION_H
#define ION_ION_H
#include <stdint.h>
void ion_init();
void ion_display_on();
void ion_display_off();
extern void * ion_framebuffer_address;
extern uint16_t ion_framebuffer_width;
extern uint16_t ion_framebuffer_height;
extern uint8_t ion_framebuffer_bits_per_pixel;
char ion_getchar();
#endif