2019-02-17 15:42:25 +03:00
|
|
|
/*
|
|
|
|
* Copyright 2005-2019, Haiku Inc.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef _ARCH_SPARC_DEBUGGER_H
|
|
|
|
#define _ARCH_SPARC_DEBUGGER_H
|
|
|
|
|
|
|
|
|
|
|
|
struct sparc_debug_cpu_state {
|
2019-03-28 10:04:58 +03:00
|
|
|
uint64 pc;
|
|
|
|
uint64 i6; // frame pointer
|
2019-02-17 15:42:25 +03:00
|
|
|
} __attribute__((aligned(8)));
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _ARCH_SPARC_DEBUGGER_H
|
|
|
|
|