1 /* 2 * Copyright 2009-2019, Haiku, Inc. All rights reserved. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef _ARCH_RISCV64_DEBUGGER_H 6 #define _ARCH_RISCV64_DEBUGGER_H 7 8 9 struct riscv64_debug_cpu_state { 10 uint64 x[31]; 11 uint64 pc; 12 double f[32]; 13 uint64 fcsr; 14 } __attribute__((aligned(8))); 15 16 17 #endif // _ARCH_RISCV64_DEBUGGER_H 18