sysapps: přidaná ukázková appka helloworld

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
This commit is contained in:
2026-07-13 20:59:32 +02:00
parent fd44a945fb
commit 337d806183
+5
View File
@@ -0,0 +1,5 @@
#include "aster_api.h"
void init(void) {
aster_api_print("Hello, world!");
}