build: add the SIBO SDK

This commit is contained in:
2026-07-06 18:01:36 +01:00
parent d76326729c
commit 64e484448c
757 changed files with 97167 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
/*
QU2.C
*/
#include <p_std.h>
#include <wlib.h>
#include <hwif.h>
LOCAL_C VOID CreateGC(VOID)
{
INT hgc;
hgc=gCreateGC0(uFindMainWid());
if (hgc<0)
p_exit(hgc);
}
GLDEF_C VOID main(VOID)
{
WMSG_KEY key;
uCommonInit();
CreateGC();
gBorder(W_BORD_CORNER_4);
wSetBusyMsg("Hello world",W_CORNER_BOTTOM_LEFT);
FOREVER
{
uGetKey(&key);
if (key.keycode==(W_SPECIAL_KEY|'x'))
p_exit(0);
}
}