15 lines
377 B
C
15 lines
377 B
C
/*
|
|
* Copyright 2012, Alex Smith, alex@alex-smith.me.uk.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _KERNEL_ARCH_X86_64_KERNEL_ARGS_H
|
|
#define _KERNEL_ARCH_X86_64_KERNEL_ARGS_H
|
|
|
|
|
|
// x86_64 kernel is loaded loaded by the x86 bootloader, kernel_args is
|
|
// identical to x86.
|
|
#include "../x86/arch_kernel_args.h"
|
|
|
|
|
|
#endif /* _KERNEL_ARCH_X86_64_KERNEL_ARGS_H */
|