Plan 9 from Bell Labs 1995-08-03
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)