~kris/9p

9hist

074e37a18fded30cbf2c8f26c1adcb2723701e27 — David du Colombier 32 years ago fc7f921
Plan 9 from Bell Labs 1994-08-23
2 files changed, 3 insertions(+), 0 deletions(-)

M pc/dat.h
M pc/main.c
M pc/dat.h => pc/dat.h +1 -0
@@ 183,6 183,7 @@ struct ISAConf {
	ulong	irq;
	ulong	mem;
	ulong	size;
	ulong	freq;
	uchar	ea[6];
};


M pc/main.c => pc/main.c +2 -0
@@ 729,6 729,8 @@ isaconfig(char *class, int ctlrno, ISAConf *isa)
				isa->mem = strtoul(p+4, &p, 0);
			else if(strncmp(p, "size=", 5) == 0)
				isa->size = strtoul(p+5, &p, 0);
			else if(strncmp(p, "freq=", 5) == 0)
				isa->freq = strtoul(p+5, &p, 0);
			else if(strncmp(p, "ea=", 3) == 0)
				parseether(isa->ea, p+3);
			while(*p && *p != ' ' && *p != '\t')