From c15925a24efe14f437d8a2699500241a58fdc8f9 Mon Sep 17 00:00:00 2001 From: Miguel Date: Fri, 17 Aug 2018 21:41:21 +0200 Subject: cleanup and working on fifo pipes --- asm/syscall.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 asm/syscall.h (limited to 'asm/syscall.h') diff --git a/asm/syscall.h b/asm/syscall.h new file mode 100644 index 0000000..2cadce4 --- /dev/null +++ b/asm/syscall.h @@ -0,0 +1,11 @@ +/* + * Issue a System Call from Ring 3 / User Space + * + * Accepts up to 3 parameters. + * Check syscalls.h for details. + */ + +uint32_t syscall(uint32_t code, + uint32_t param_1, + uint32_t param_2, + uint32_t param_3); -- cgit v1.2.3