~kris/9p

9hist

ref: ab2fdc7226bf8bfbf950c6944848ca5bbef8f8e9 9hist/power/segment.h -rw-r--r-- 408 bytes
ab2fdc72 — David du Colombier Plan 9 from Bell Labs 1996-07-12 30 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * Attach segment types
 */

#define VME16IO3	0x17C00000	
#define VME32TDFB	(0x30000000+128*MB)

Physseg physseg[] =
{
	{ SG_PHYSICAL,	"lock",		0,	1024*BY2PG,	lkpage,		lkpgfree },
	{ SG_SHARED,	"shared",	0,	SEGMAXSIZE,	0, 0 },
	{ SG_BSS,	"memory",	0,	SEGMAXSIZE,	0, 0 },
	{ SG_PHYSICAL,	"vme16",	VME16IO3, 	64*1024,	0, 0 },
	{ SG_PHYSICAL,	"tdsfb",	VME32TDFB, 	4*MB,		0, 0 },
	{ 0,		0,		0,	0,		0, 0 },
};