Files

19 lines
271 B
C
Raw Permalink Normal View History

2026-07-06 18:01:36 +01:00
/*
QU1.C
*/
#include <p_std.h>
#include <wlib.h>
#include <hwif.h>
GLDEF_C VOID main(VOID)
{
WMSG_KEY key;
uCommonInit();
wSetBusyMsg("Hello world",W_CORNER_BOTTOM_LEFT);
uGetKey(&key);
uGetKey(&key);
p_exit(0);
}