Restore rascsi help text for hda format; consistently use 'compatible' teminology instead of 'genuine' (#937)

This commit is contained in:
Daniel Markstedt 2022-10-24 13:41:04 -07:00 committed by GitHub
parent 8ec5b53b28
commit 73ecd4d1b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 5 deletions

View File

@ -10,7 +10,7 @@
// Licensed under the BSD 3-Clause License.
// See LICENSE file in the project root folder.
//
// [ SCSI NEC "Genuine" Hard Disk]
// [ SCSI NEC Compatible Hard Disk]
//
//---------------------------------------------------------------------------
@ -83,7 +83,7 @@ pair<int, int> SCSIHD_NEC::SetParameters(const string& extension, const array<BY
int image_size;
int sector_size;
// PC-9801-55 NEC genuine?
// PC-9801-55 NEC compatible?
if (ext == ".hdn") {
// Assuming sector size 512, number of sectors 25, number of heads 8 as default settings
image_offset = 0;

View File

@ -10,7 +10,7 @@
// Licensed under the BSD 3-Clause License.
// See LICENSE file in the project root folder.
//
// [ SCSI NEC "Genuine" Hard Disk]
// [ SCSI NEC Compatible Hard Disk]
//
//---------------------------------------------------------------------------
@ -26,7 +26,7 @@ using namespace std;
//===========================================================================
//
// SCSI hard disk (PC-9801-55 NEC genuine / Anex86 / T98Next)
// SCSI hard disk (PC-9801-55 NEC compatible / Anex86 / T98Next)
//
//===========================================================================
class SCSIHD_NEC : public SCSIHD //NOSONAR The inheritance hierarchy depth is acceptable in this case

View File

@ -83,7 +83,8 @@ void Banner(int argc, char* argv[])
cout << " hd1 : SCSI-1 HD image (Non-removable generic SCSI-1 HD image)\n";
cout << " hds : SCSI HD image (Non-removable generic SCSI HD image)\n";
cout << " hdr : SCSI HD image (Removable generic HD image)\n";
cout << " hdn : SCSI HD image (NEC GENUINE)\n";
cout << " hda : SCSI HD image (Apple compatible image)\n";
cout << " hdn : SCSI HD image (NEC compatible image)\n";
cout << " hdi : SCSI HD image (Anex86 HD image)\n";
cout << " nhd : SCSI HD image (T98Next HD image)\n";
cout << " mos : SCSI MO image (MO image)\n";