~kris/9p

9hist

d2a73d819f60d82a850e158dde22c107a06a2dbe — David du Colombier 31 years ago e9d8560
Plan 9 from Bell Labs 1995-08-03
2 files changed, 3 insertions(+), 0 deletions(-)

M pc/dat.h
M pc/main.c
M pc/dat.h => pc/dat.h +1 -0
@@ 186,6 186,7 @@ struct ISAConf {
	char	type[NAMELEN];
	ulong	port;
	ulong	irq;
	int	dma;
	ulong	mem;
	ulong	size;
	ulong	freq;

M pc/main.c => pc/main.c +2 -0
@@ 754,6 754,8 @@ isaconfig(char *class, int ctlrno, ISAConf *isa)
				isa->port = strtoul(p+5, &p, 0);
			else if(strncmp(p, "irq=", 4) == 0)
				isa->irq = strtoul(p+4, &p, 0);
			else if(strncmp(p, "dma=", 4) == 0)
				isa->dma = strtoul(p+5, &p, 0);
			else if(strncmp(p, "mem=", 4) == 0)
				isa->mem = strtoul(p+4, &p, 0);
			else if(strncmp(p, "size=", 5) == 0)