
Home / Autodocs / scsi.device
NAME
- TD_FORMAT64
-
write data to disk, 64 bit extended
FUNCTION
This command is traditionally used to write data to disk that has not yet been formatted or has had a hard error on a standard write command. However, as scsi and ide drives come pre-formatted, these commands are identical to TD_WRITE64.
INPUTS
- io_Device
-
preset by the call to OpenDevice()
- io_Unit
-
preset by the call to OpenDevice()
- io_Command
-
TD_FORMAT64
- io_Flags
-
0 or IOF_QUICK
- io_Data
-
points to a buffer containing the data to write to the disk, must be at least as large as io_Length.
- io_Length
-
number of bytes to format, must be a multiple of the block size of the drive.
- io_Offset
-
low 32 bits of the byte offset from the start of the disk to the block to write to.
- io_Actual
-
high 32 bits of the byte offset.
RESULT
- io_Error
-
0 for success, or an error code as defined in <devices/trackdisk.h>
BUGS
Some incarnations of the scsi.device, namely those that handle actually IDE devices, were unable to write more than 255 blocks in one go. This bug has been fixed in V47.
SEE ALSO
TD_SEEK64