mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
19 lines
342 B
C
19 lines
342 B
C
#ifndef PLATFORM_H
|
|
#define PLATFORM_H
|
|
|
|
#include <platform/fx92kbd/fx92kbd.h>
|
|
#include <platform/ili9341/ili9341.h>
|
|
|
|
typedef struct {
|
|
int framebuffer_width;
|
|
int framebuffer_height;
|
|
int framebuffer_bits_per_pixel;
|
|
char * framebuffer_address;
|
|
fx92kbd_t keyboard;
|
|
ili9341_t display;
|
|
} platform_t;
|
|
|
|
extern platform_t Platform;
|
|
|
|
#endif
|