mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-19 12:32:29 +00:00
08194af424
- Moved C++ code to cpp/ from src/raspberrypi - Related updates to Makefile, easyinstall.sh, and the github build rules - Removed the native X68k C code in src/x68k from the repo
52 lines
1.2 KiB
C++
52 lines
1.2 KiB
C++
//---------------------------------------------------------------------------
|
||
//
|
||
// SCSI Target Emulator RaSCSI Reloaded
|
||
// for Raspberry Pi
|
||
//
|
||
// Copyright (C) 2001-2006 PI.(ytanaka@ipc-tokai.or.jp)
|
||
// Copyright (C) 2014-2020 GIMONS
|
||
// Copyright (C) 2022 Uwe Seimet
|
||
// Copyright (C) akuker
|
||
//
|
||
// Licensed under the BSD 3-Clause License.
|
||
// See LICENSE file in the project root folder.
|
||
//
|
||
//---------------------------------------------------------------------------
|
||
|
||
#pragma once
|
||
|
||
#include "scsi.h"
|
||
#include "disk.h"
|
||
#include <string>
|
||
#include <vector>
|
||
#include <map>
|
||
|
||
class SCSIHD : public Disk
|
||
{
|
||
const string DEFAULT_PRODUCT = "SCSI HD";
|
||
|
||
public:
|
||
|
||
SCSIHD(int, const unordered_set<uint32_t>&, bool, scsi_defs::scsi_level = scsi_level::SCSI_2);
|
||
~SCSIHD() override = default;
|
||
|
||
void FinalizeSetup(off_t);
|
||
|
||
void Open() override;
|
||
|
||
// Commands
|
||
vector<byte> InquiryInternal() const override;
|
||
void ModeSelect(scsi_defs::scsi_command, const vector<int>&, const vector<BYTE>&, int) const override;
|
||
|
||
void AddFormatPage(map<int, vector<byte>>&, bool) const override;
|
||
void AddVendorPage(map<int, vector<byte>>&, int, bool) const override;
|
||
|
||
private:
|
||
|
||
string GetProductData() const;
|
||
|
||
using super = Disk;
|
||
|
||
scsi_defs::scsi_level scsi_level;
|
||
};
|