dius 0.1.0
Loading...
Searching...
No Matches
arch_system_call.h
Go to the documentation of this file.
1#pragma once
2
3#define DIUS_SYSTEM_CALL_INSTRUCTION "syscall"
4
5#define DIUS_SYSTEM_CALL_ASM_RESULT "=a"
6#define DIUS_SYSTEM_CALL_ASM_NUMBER "a"
7
8#define DIUS_SYSTEM_CALL_ASM_ARG1 "rdi"
9#define DIUS_SYSTEM_CALL_ASM_ARG2 "rsi"
10#define DIUS_SYSTEM_CALL_ASM_ARG3 "rdx"
11#define DIUS_SYSTEM_CALL_ASM_ARG4 "r10"
12#define DIUS_SYSTEM_CALL_ASM_ARG5 "r8"
13#define DIUS_SYSTEM_CALL_ASM_ARG6 "r9"
14
15#define DIUS_SYSTEM_CALL_CLOBBER "memory", "rcx", "r11", "cc"