#include <gint/display.h>
|
|
#include <gint/keyboard.h>
|
|
|
|
int main(void)
|
|
{
|
|
extern image_t img_grid;
|
|
dclear(C_WHITE);
|
|
dimage(0, 0, &img_grid);
|
|
dupdate();
|
|
|
|
getkey();
|
|
return 1;
|
|
}
|