| 22 | using namespace scsi_command_util; |
| 23 | |
| 24 | SCSICD::SCSICD(int lun, scsi_defs::scsi_level level) : Disk(SCCD, lun, { 512, 2048 }), scsi_level(level) |
| 25 | { |
| 26 | SetReadOnly(true); |
| 27 | SetRemovable(true); |
| 28 | SetLockable(true); |
| 29 | } |
| 30 | |
| 31 | bool SCSICD::Init(const param_map& params) |
| 32 | { |
nothing calls this directly
no outgoing calls
no test coverage detected