BlueSCSI_cdrom.h 526 B

123456789101112131415161718
  1. // Advanced CD-ROM drive emulation.
  2. // Adds a few capabilities on top of the SCSI2SD CD-ROM emulation:
  3. //
  4. // - bin/cue support for support of multiple tracks
  5. // - on the fly image switching
  6. #pragma once
  7. #include "BlueSCSI_disk.h"
  8. // Called by scsi.c from SCSI2SD
  9. extern "C" int scsiCDRomCommand(void);
  10. // Reinsert ejected CD-ROM and restart from first image
  11. void cdromReinsertFirstImage(image_config_t &img);
  12. // Switch to next CD-ROM image if multiple have been configured
  13. bool cdromSwitchNextImage(image_config_t &img);