Home | History | Annotate | Line # | Download | only in include
pmap.h revision 1.12
      1 /*	$NetBSD: pmap.h,v 1.12 1997/06/15 18:02:22 mhitch Exp $	*/
      2 
      3 #include <mips/pmap.h>
      4 
      5 #define pmax_trunc_seg(a) mips_trunc_seg(a)
      6 #define pmax_round_seg(a) mips_round_seg(a)
      7 
      8 #ifdef MIPS3
      9 #define PMAP_PREFER(pa, va)             pmap_prefer((pa), (va))
     10 void	pmap_prefer __P((vm_offset_t, vm_offset_t *));
     11 #endif
     12 
     13 /*
     14  *	Bootstrap the system enough to run with virtual memory.
     15  *	firstaddr is the first unused kseg0 address (not page aligned).
     16  */
     17 void	pmap_bootstrap __P((vm_offset_t firstaddr));
     18