Metropoli BBS
VIEWER: segment.c MODE: TEXT (ASCII)
/* $Id: segment.c,v 1.2 1995/11/25 01:00:14 davem Exp $
 * segment.c:  Prom routine to map segments in other contexts before
 *             a standalone is completely mapped.  This is for sun4 and
 *             sun4c architectures only.
 *
 * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
 */

#include <asm/openprom.h>
#include <asm/oplib.h>

/* Set physical segment 'segment' at virtual address 'vaddr' in
 * context 'ctx'.
 */
void
prom_putsegment(int ctx, unsigned long vaddr, int segment)
{
	(*(romvec->pv_setctxt))(ctx, (char *) vaddr, segment);
	return;
}
[ RETURN TO DIRECTORY ]