From 337d80618320ce3e71da4a9c5ed5916b2258ae87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pavel=20Kala=C5=A1=20=28Floxen=29?= Date: Mon, 13 Jul 2026 20:59:32 +0200 Subject: [PATCH] =?UTF-8?q?sysapps:=20p=C5=99idan=C3=A1=20uk=C3=A1zkov?= =?UTF-8?q?=C3=A1=20appka=20helloworld?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Přidáno: sysapps/helloworld.c - nová appka s entrypointem void init(void) - vypisuje text 'Hello, world!' přes aster_api_print Upraveno/Odstraněno: nic --- sysapps/helloworld.c | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 sysapps/helloworld.c diff --git a/sysapps/helloworld.c b/sysapps/helloworld.c new file mode 100644 index 0000000..255f881 --- /dev/null +++ b/sysapps/helloworld.c @@ -0,0 +1,5 @@ +#include "aster_api.h" + +void init(void) { + aster_api_print("Hello, world!"); +}