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