You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
201 B
C++

#include <lowlevellib.h>
int os_main( int argc, char **argv, char **envp )
{
llgfx_SetDisplayMode(320,240,16,0);
llgfx_ClearScreen(0);
llgfx_FlipScreen(0);
llirq_Sleep(1000);
return 0;
}