mirror of
https://github.com/86Box/86Box.git
synced 2026-02-24 20:35:32 -07:00
Applied the mainline PCem slight CPU emulation speedup commit; Added emulation of removable SCSI hard disks; CD-ROM image handler now uses C FILE's (with the 64-bit size calls) instead of C++ iostreams, ISO images bigger than 2 GB should work properly again; Split RLL/ESDI and XT IDE disks to their own bus types; Turned status bar pane meaning and hard disks and CD-ROM BUS numbers to #define's; Other miscellaneous cleanups.
6 lines
215 B
C
6 lines
215 B
C
extern void cdrom_eject(uint8_t id);
|
|
extern void cdrom_reload(uint8_t id);
|
|
extern void removable_disk_unload(uint8_t id);
|
|
extern void removable_disk_eject(uint8_t id);
|
|
extern void removable_disk_reload(uint8_t id);
|