Lines Matching refs:inreg
78 com32sys_t inreg, outreg; in read_sectors() local
95 memset(&inreg, 0, sizeof inreg); in read_sectors()
104 inreg.esi.w[0] = OFFS(dapa); in read_sectors()
105 inreg.ds = SEG(dapa); in read_sectors()
106 inreg.edx.b[0] = drive_info->disk; in read_sectors()
107 inreg.eax.b[1] = 0x42; /* Extended read */ in read_sectors()
126 inreg.eax.w[0] = 0x0201; /* Read one sector */ in read_sectors()
127 inreg.ecx.b[1] = c & 0xff; in read_sectors()
128 inreg.ecx.b[0] = s + (c >> 6); in read_sectors()
129 inreg.edx.b[1] = h; in read_sectors()
130 inreg.edx.b[0] = drive_info->disk; in read_sectors()
131 inreg.ebx.w[0] = OFFS(buf); in read_sectors()
132 inreg.es = SEG(buf); in read_sectors()
136 if (int13_retry(&inreg, &outreg)) { in read_sectors()