Various changes to FDC emulation.
Support for multiple disc image formats. Added preliminary FDI support.
This commit is contained in:
parent
37fe4a56be
commit
a8159f8c09
20 changed files with 3797 additions and 393 deletions
10
src/disc_img.h
Normal file
10
src/disc_img.h
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
void img_init();
|
||||
void img_load(int drive, char *fn);
|
||||
void img_close(int drive);
|
||||
void img_seek(int drive, int track);
|
||||
void img_readsector(int drive, int sector, int track, int side, int density);
|
||||
void img_writesector(int drive, int sector, int track, int side, int density);
|
||||
void img_readaddress(int drive, int sector, int side, int density);
|
||||
void img_format(int drive, int sector, int side, int density);
|
||||
void img_stop();
|
||||
void img_poll();
|
||||
Loading…
Reference in a new issue