ulib term_write() syscall

This commit is contained in:
2025-11-15 00:39:04 +01:00
parent ecee481b33
commit 71fa87d7a4
2 changed files with 5 additions and 0 deletions

View File

@ -182,3 +182,7 @@ int32_t ipc_mbusattch(char *name) {
int32_t ipc_mbusdttch(char *name) {
return syscall(SYS_IPC_MBUSATTCH, (uint64_t)name, 0, 0, 0, 0, 0);
}
int32_t term_write(char *buffer, size_t len) {
return syscall(SYS_TERM_WRITE, (uint64_t)buffer, (uint64_t)len, 0, 0, 0, 0);
}