Files
my-os-project2/kernel/syscall/devctl.h
2025-10-03 23:47:58 +02:00

11 lines
211 B
C

#ifndef SYSCALL_DEVCTL_H_
#define SYSCALL_DEVCTL_H_
#include <stdint.h>
#include "syscall.h"
#include "dev/dev.h"
int32_t SYSCALL5(sys_devctl, devh1, cmd1, buffer1, len1, extra1);
#endif // SYSCALL_DEVCTL_H_