1 /* 2 * Copyright 2019 Haiku, Inc. All Rights Reserved. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef _ARCH_ARM64_DEBUGGER_H 6 #define _ARCH_ARM64_DEBUGGER_H 7 8 struct arm64_debug_cpu_state { 9 unsigned long x[30]; 10 unsigned long lr; 11 unsigned long sp; 12 unsigned long elr; 13 unsigned int spsr; 14 } __attribute__((aligned(16))); 15 16 #endif // _ARCH_ARM_DEBUGGER_H 17