9b4c0e34d2
x86-64. Since there's no hardware available yet, this port is only known to run on the Simics simulator for at the moment, and as such uses the PC devices that it simulates for now. It will be developed more (and cleaned up) as the hardware becomes available.
17 lines
399 B
C
17 lines
399 B
C
/* $NetBSD: bootinfo.h,v 1.1 2001/06/19 00:20:10 fvdl Exp $ */
|
|
|
|
#ifndef _X86_64_BOOTINFO_H_
|
|
#define _X86_64_BOOTINFO_H_
|
|
/*
|
|
* Only the plain i386 info for now, could add more later, but that depends
|
|
* on the eventual architecture of the systems.
|
|
*/
|
|
#ifdef _KERNEL
|
|
#include <i386/include/bootinfo.h>
|
|
#else
|
|
#include <i386/bootinfo.h>
|
|
#endif
|
|
|
|
#define VAR32_SIZE 4096
|
|
#endif /* _X86_64_BOOTINFO_H_ */
|