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_fdi.h
Normal file
10
src/disc_fdi.h
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
void fdi_init();
|
||||
void fdi_load(int drive, char *fn);
|
||||
void fdi_close(int drive);
|
||||
void fdi_seek(int drive, int track);
|
||||
void fdi_readsector(int drive, int sector, int track, int side, int density);
|
||||
void fdi_writesector(int drive, int sector, int track, int side, int density);
|
||||
void fdi_readaddress(int drive, int sector, int side, int density);
|
||||
void fdi_format(int drive, int sector, int side, int density);
|
||||
void fdi_stop();
|
||||
void fdi_poll();
|
||||
Loading…
Reference in a new issue