mirror of
https://github.com/JannisHeydemann/BoredOS.git
synced 2026-05-30 02:16:58 +00:00
12 lines
189 B
C
12 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
|