mirror of
https://github.com/BoredDevNL/BoredOS.git
synced 2026-05-15 18:58:40 +00:00
11 lines
189 B
C
11 lines
189 B
C
#ifndef SYSCALL_USER_H
|
|
#define SYSCALL_USER_H
|
|
|
|
#include "syscall.h"
|
|
#include <stddef.h>
|
|
|
|
static inline void sys_serial_write(const char *str) {
|
|
syscall2(8, 0, (uint64_t)str);
|
|
}
|
|
|
|
#endif
|