Added int1 and int3 marco

This commit is contained in:
Alex 2023-02-19 00:23:40 +02:00
parent 419b5bee0d
commit 84ed8d61e2
Signed by untrusted user who does not match committer: enderice2
GPG Key ID: EACC3AD603BAB4DD

View File

@ -298,4 +298,16 @@ typedef intptr_t ssize_t;
#define SafeFunction __no_stack_protector __no_sanitize_address __no_sanitize_undefined __no_address_safety_analysis __no_sanitize_thread
#define int1 \
__asm__ __volatile__("int $0x1" \
: \
: \
: "memory")
#define int3 \
__asm__ __volatile__("int $0x3" \
: \
: \
: "memory")
#endif // !__FENNIX_KERNEL_TYPES_H__