Home  /  Autodocs  /  trackfile.device

NAME

CMD_READ
read sectors of data from a disk.

FUNCTION

This command transfers data from the track buffer to a supplied buffer. If the desired sector is already in the track buffer, no disk activity is initiated. If the desired sector is not in the buffer, the track containing that sector is automatically read in. If the data in the current track buffer has been modified, it is written out to the disk before a new track is read.

INPUTS

io_Device
preset by the call to OpenDevice()

io_Unit
preset by the call to OpenDevice()

io_Command
CMD_READ

io_Flags
0

io_Data
pointer to the buffer where the data should be put

io_Length
number of bytes to read, must be a multiple of TD_SECTOR.

io_Offset
byte offset from the start of the disk describing where to read data from, must be a multiple of TD_SECTOR.

RESULT

io_Error
0 for success, or an error code as defined in <devices/trackdisk.h> or <exec/errors.h>

SEE ALSO

CMD_WRITE