This commit is contained in:
2026-04-10 20:22:45 +08:00
parent 86b5287f8c
commit 2435452262
6 changed files with 303 additions and 3 deletions

View File

@@ -0,0 +1,8 @@
#include <cleonos_syscall.h>
static const char ttydrv_banner[] = "[DRIVER][TTYDRV] ttydrv.elf online";
int cleonos_app_main(void) {
cleonos_sys_log_write(ttydrv_banner, (u64)(sizeof(ttydrv_banner) - 1U));
return 0;
}