blob: dada6a4b2d7c2b1a04ed429eee873b0a37e3fb16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* $OpenBSD: vmparam.h,v 1.2 2010/12/31 21:38:08 miod Exp $ */
/* public domain */
/*
* Physical memory is mapped 1:1 at the bottom of the supervisor address
* space. Kernel virtual memory space starts from the end of physical memory,
* up to the on-board devices appearing all over the last 4MB of address space.
*/
#define VM_MIN_KERNEL_ADDRESS ((vaddr_t)0x00000000)
#define VM_MAX_KERNEL_ADDRESS ((vaddr_t)0xffc00000)
#include <m88k/vmparam.h>
|