Searched defs:nlh (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Devices/PC/BIOS/
H A Ddisk.c126 uint16_t nlc, nlh, nlspt; local
189 nlh = bios_dsk->devices[device].lchs.heads;
193 if( (cylinder >= nlc) || (head >= nlh) || (sector > nlspt )) {
204 if (( (bios_dsk->devices[device].pchs.heads != nlh) || (bios_dsk->devices[device].pchs.spt != nlspt)) || VBOX_IS_SCSI_DEVICE(device)) {
205 lba = ((((uint32_t)cylinder * (uint32_t)nlh) + (uint32_t)head) * (uint32_t)nlspt) + (uint32_t)sector - 1;
250 nlh = bios_dsk->devices[device].lchs.heads;
259 SET_DH(nlh - 1);

Completed in 1410 milliseconds