xref: /haiku/src/system/libroot/posix/arch/x86_64/setjmp_internal.h (revision 25a7b01d15612846f332751841da3579db313082)
1 /*
2  * Copyright 2012, Alex Smith, alex@alex-smith.me.uk.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef SETJMP_INTERNAL_H
6 #define SETJMP_INTERNAL_H
7 
8 
9 #define JMP_REGS_IP		0
10 #define JMP_REGS_SP		8
11 #define JMP_REGS_BP		16
12 #define JMP_REGS_BX		24
13 #define JMP_REGS_R12	32
14 #define JMP_REGS_R13	40
15 #define JMP_REGS_R14	48
16 #define JMP_REGS_R15	56
17 
18 #include <asm_defs.h>
19 
20 #endif	/* SETJMP_INTERNAL_H */
21