Function 33 - write file to ramdisk.
Parameters:
- eax = 33 - function number
- ebx = pointer to the filename
- ecx = pointer to data for writing
- edx = number of bytes for writing
- should be set esi=0
Returned value:
Remarks:
- This function is obsolete; function 70 allows to fulfil
the same operations with extended possibilities.
- If esi contains non-zero value and selected file already exists,
one more file with the same name will be created.
- Otherwise file will be overwritten.
- The filename must be either in the format 8+3 characters
(first 8 characters - name itself, last 3 - extension,
the short names and extensions are supplemented with spaces),
or in the format 8.3 characters "FILE.EXT"/"FILE.EX "
(name no more than 8 characters, dot, extension 3 characters
supplemented if necessary by spaces).
The filename must be written with capital letters. The terminating
character with code 0 is not necessary (not ASCIIZ-string).
- This function does not support folders on the ramdisk.