blob: 91f2df1d3c94a03da3825cb8285af8a6f02a901b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* $NetBSD: vmparam.h,v 1.5 2014/03/31 11:41:01 martin Exp $ */
/*
* PlayStation 2 has one physical memory segment.
* 0 ... kernel itself
* 1 ... heap (continuous)
*/
#define VM_PHYSSEG_MAX 2
#define VM_NFREELIST 1
#define VM_FREELIST_DEFAULT 0
#include <mips/vmparam.h>
|