You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
341 B
25 lines
341 B
/* |
|
Example for the |
|
u8x8_UserInterfaceMessage |
|
procedure. |
|
|
|
*/ |
|
|
|
|
|
#include "u8x8.h" |
|
|
|
u8x8_t u8x8; |
|
|
|
|
|
int main(void) |
|
{ |
|
u8x8_Setup_SDL_128x64(&u8x8); |
|
u8x8_InitDisplay(&u8x8); |
|
|
|
u8x8_SetFont(&u8x8, u8x8_font_amstrad_cpc_extended_f); |
|
|
|
u8x8_UserInterfaceMessage(&u8x8, "title1", "title2", "title3", "Yes\nNo"); |
|
|
|
return 0; |
|
} |
|
|
|
|