haiku/headers/os/arch/arm/arch_debugger.h
Ithamar R. Adema 475f00372b ARM: remove annoying #warning
Although done with the best intentions, the usage of #warning in the
ARM build makes it hard to see what's going on, or see any "real"
warnings.

Remove at least this particularly often triggered one, so we can
have a relatively "quiet" build again...
2014-10-26 23:40:17 +01:00

31 lines
671 B
C

/*
* Copyright 2005, Haiku Inc.
* Distributed under the terms of the MIT License.
*/
#ifndef _ARCH_ARM_DEBUGGER_H
#define _ARCH_ARM_DEBUGGER_H
struct arm_debug_cpu_state {
ulong r0;
ulong r1;
ulong r2;
ulong r3;
ulong r4;
ulong r5;
ulong r6;
ulong r7;
ulong r8;
ulong r9;
ulong r10;
ulong r11;
ulong r12;
ulong r13; /* stack pointer */
ulong r14; /* link register */
ulong r15; /* program counter */
ulong cpsr;
// TODO missing members!
uint32 dummy;
} __attribute__((aligned(8)));
#endif // _ARCH_ARM_DEBUGGER_H