xref: /haiku/headers/os/arch/sparc/arch_debugger.h (revision 1deede7388b04dbeec5af85cae7164735ea9e70d)
1 /*
2  * Copyright 2005-2019, Haiku Inc.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef _ARCH_SPARC_DEBUGGER_H
6 #define _ARCH_SPARC_DEBUGGER_H
7 
8 
9 struct sparc_debug_cpu_state {
10 	uint64	pc;
11 	uint64 i6; // frame pointer
12 } __attribute__((aligned(8)));
13 
14 
15 #endif	// _ARCH_SPARC_DEBUGGER_H
16 
17