Skip to content

Commit

Permalink
profile: update x68k to support both SASI and SCSI profiles
Browse files Browse the repository at this point in the history
  • Loading branch information
erichelgeson committed Sep 28, 2024
1 parent abc08bb commit 627c217
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions src/BlueSCSI_presets.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,23 @@ preset_config_t getSystemPreset(const char *presetName)
cfg.mapLunsToIDs = true;
cfg.enableParity = false;
}
else if (strequals(presetName, "X68000"))
else if (strequals(presetName, "X68000") || strequals(presetName, "X68000-SCSI"))
{
cfg.presetName = "X68000";
cfg.presetName = "X68000-SCSI";
cfg.selectionDelay = 0;
cfg.quirks = S2S_CFG_QUIRKS_X68000;
cfg.enableSCSI2 = false;
cfg.maxSyncSpeed = 5;
}
else if (strequals(presetName, "X68000-SASI"))
{
cfg.presetName = "X68000-SASI";
cfg.selectionDelay = 0;
cfg.quirks = S2S_CFG_QUIRKS_X68000;
cfg.enableSCSI2 = false;
cfg.enableParity = false;
cfg.maxSyncSpeed = 5;
}
else if (strequals(presetName, "NeXT"))
{
cfg.presetName = "NeXT";
Expand Down

0 comments on commit 627c217

Please sign in to comment.