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

/vbox/src/VBox/Devices/Storage/
H A DDevFdc.cpp177 uint8_t sect; member in struct:fdrive_t
233 static int fd_sector_calc(uint8_t head, uint8_t track, uint8_t sect, argument
236 return (((track * num_sides) + head) * last_sect) + sect - 1; /* sect >= 1 */
242 return fd_sector_calc(drv->head, drv->track, drv->sect, drv->last_sect, NUM_SIDES(drv));
252 static int fd_seek(fdrive_t *drv, uint8_t head, uint8_t track, uint8_t sect, argument
261 head, track, sect, 1,
266 if (sect > drv->last_sect || sect < 1) {
268 head, track, sect,
[all...]

Completed in 37 milliseconds