f76bc433e1
* Not all of these headers are correct yet, just adding what's necessary to get things to compile for the time being.
18 lines
302 B
C
18 lines
302 B
C
/*
|
|
* Copyright 2012, Alex Smith, alex@alex-smith.me.uk.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _KERNEL_ARCH_X86_64_DEBUG_H
|
|
#define _KERNEL_ARCH_X86_64_DEBUG_H
|
|
|
|
|
|
#include <SupportDefs.h>
|
|
|
|
|
|
struct arch_debug_registers {
|
|
uint64 rbp;
|
|
};
|
|
|
|
|
|
#endif /* _KERNEL_ARCH_X86_64_DEBUG_H */
|