~kris/9p

9hist

2b67be22f52b7afffd0de94e452565d458159ae5 — David du Colombier 33 years ago 7bc185a
Plan 9 from Bell Labs 1993-09-14
2 files changed, 3 insertions(+), 2 deletions(-)

M carrera/main.c
M carrera/segment.h
M carrera/main.c => carrera/main.c +2 -2
@@ 47,7 47,7 @@ main(void)
	serialinit();
	vecinit();
	iprint("\n\nBrazil\n");
screeninit(); 
/* screeninit(); */
	pageinit();
	procinit0();
	initseg();


@@ 171,7 171,7 @@ ioinit(void)
	 * Map devices and the Eisa control space
	 */
	devphys = IOPTE|PPN(Devicephys);
	isaphys = IOPTE|PPN(Eisaphys);
	isaphys = /* IOPTE|PPN(Eisaphys) */ PTEGLOBL;

	puttlbx(1, Devicevirt, devphys, isaphys, PGSZ64K);


M carrera/segment.h => carrera/segment.h +1 -0
@@ 6,5 6,6 @@ Physseg physseg[] =
{
	{ SG_SHARED,	"shared",	0,	SEGMAXSIZE,	0, 0 },
	{ SG_BSS,	"memory",	0,	SEGMAXSIZE,	0, 0 },
	{ SG_PHYSICAL,	"eisaio",	Eisaphys, 64*1024,	0, 0 },
	{ 0,		0,		0,	0,		0, 0 },
};