Re: PATCH: INT13 (READ/WRITE SECTORS)

2000-11-21 Thread admiral coeyman
Frank Cornelis, Is 'INT13' a good enough name for this section? If we name it something like 'BIOS,' then we can have one section for a larger number of functions. The name doesn't mater that much, but since it still has to be implemented, 'BIOS' indeed is better.

Re: PATCH: INT13 (READ/WRITE SECTORS)

2000-11-20 Thread Frank Cornelis
On Fri, 17 Nov 2000, David Elliott wrote: Joerg Mayer wrote: On Fri, Nov 17, 2000 at 12:57:18PM +0100, Frank Cornelis wrote: I wrote a little patch to support INT 13 read/writing of sectors on a floppy disk. If it's OK, please merge it with the CVS tree. ... +

Re: PATCH: INT13 (READ/WRITE SECTORS)

2000-11-20 Thread admiral coeyman
Frank Cornelis, [Int13] Bios0=/dev/fd0 Bios1=/dev/fd1 Bios80=/dev/hda Bios81=/dev/hdb Or something like that assuming that I am remembering correctly that floppy drives are 0-7f and hard drives are 80-ff. For now, wine.conf only lists logical devices. What we need for low

Re: PATCH: INT13 (READ/WRITE SECTORS)

2000-11-20 Thread Frank Cornelis
[Int13] Bios0=/dev/fd0 Bios1=/dev/fd1 Bios80=/dev/hda Bios81=/dev/hdb Or something like that assuming that I am remembering correctly that floppy drives are 0-7f and hard drives are 80-ff. For now, wine.conf only lists logical devices. What we need for low level INT13

Re: PATCH: INT13 (READ/WRITE SECTORS)

2000-11-17 Thread Joerg Mayer
On Fri, Nov 17, 2000 at 12:57:18PM +0100, Frank Cornelis wrote: I wrote a little patch to support INT 13 read/writing of sectors on a floppy disk. If it's OK, please merge it with the CVS tree. ... + sprintf (dev_name, "/dev/fd%d", drive_nr); ... +

Re: PATCH: INT13 (READ/WRITE SECTORS)

2000-11-17 Thread David Elliott
Joerg Mayer wrote: On Fri, Nov 17, 2000 at 12:57:18PM +0100, Frank Cornelis wrote: I wrote a little patch to support INT 13 read/writing of sectors on a floppy disk. If it's OK, please merge it with the CVS tree. ... + sprintf (dev_name, "/dev/fd%d", drive_nr); ...

Re: PATCH: INT13 (READ/WRITE SECTORS)

2000-11-17 Thread admiral coeyman
Frank Cornelis, I wrote a little patch to support INT 13 read/writing of sectors on a floppy disk. If it's OK, please merge it with the CVS tree. I created something similar to this awhile back, except that mine included the ability to validate sectors as good/bad. All that took,