mirror of
https://github.com/TomHarte/CLK.git
synced 2025-08-09 20:25:19 +00:00
Switched back to full typing, even for DFS loading. It saves having to worry about sideways RAM filing systems and shift (if that's even the issue).
This commit is contained in:
@@ -131,15 +131,15 @@ void StaticAnalyser::Acorn::AddTargets(
|
||||
switch(bootOption)
|
||||
{
|
||||
case Catalogue::BootOption::None: adfs_command = "*CAT\n"; break;
|
||||
case Catalogue::BootOption::LoadBOOT: adfs_command = "*MOUNT\n*LOAD !BOOT\n"; break;
|
||||
case Catalogue::BootOption::RunBOOT: adfs_command = "*MOUNT\n*RUN !BOOT\n"; break;
|
||||
case Catalogue::BootOption::ExecBOOT: adfs_command = "*MOUNT\n*EXEC !BOOT\n"; break;
|
||||
case Catalogue::BootOption::LoadBOOT: adfs_command = "*LOAD !BOOT\n"; break;
|
||||
case Catalogue::BootOption::RunBOOT: adfs_command = "*RUN !BOOT\n"; break;
|
||||
case Catalogue::BootOption::ExecBOOT: adfs_command = "*EXEC !BOOT\n"; break;
|
||||
}
|
||||
|
||||
if(target.acorn.has_dfs && bootOption != Catalogue::BootOption::None)
|
||||
target.acorn.should_hold_shift = true;
|
||||
else
|
||||
target.loadingCommand = adfs_command;
|
||||
// if(target.acorn.has_dfs && bootOption != Catalogue::BootOption::None)
|
||||
// target.acorn.should_hold_shift = true;
|
||||
// else
|
||||
target.loadingCommand = (target.acorn.has_dfs ? "" : "*MOUNT\n") + adfs_command;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user