mirror of
https://review.haiku-os.org/haiku
synced 2025-01-30 10:14:53 +01:00
18 lines
292 B
C
18 lines
292 B
C
|
/*
|
||
|
* Copyright 2010, Ingo Weinhold, ingo_weinhold@gmx.de.
|
||
|
* Distributed under the terms of the MIT License.
|
||
|
*/
|
||
|
#ifndef _KERNEL_ARCH_X86_DEBUG_H
|
||
|
#define _KERNEL_ARCH_X86_DEBUG_H
|
||
|
|
||
|
|
||
|
#include <SupportDefs.h>
|
||
|
|
||
|
|
||
|
struct arch_debug_registers {
|
||
|
uint32 ebp;
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // _KERNEL_ARCH_X86_DEBUG_H
|