mirror of
https://github.com/TomHarte/CLK.git
synced 2025-08-15 14:27:29 +00:00
Added typer support for loading from DFS. It'll do for now.
This commit is contained in:
@@ -122,7 +122,17 @@ void StaticAnalyser::Acorn::AddTargets(
|
|||||||
target.disks = disks;
|
target.disks = disks;
|
||||||
target.acorn.has_dfs = true;
|
target.acorn.has_dfs = true;
|
||||||
|
|
||||||
// TODO: what about booting?
|
// TODO: can't I just press shift?
|
||||||
|
switch(dfs_catalogue->bootOption)
|
||||||
|
{
|
||||||
|
default: target.loadingCommand = "*CAT\n"; break;
|
||||||
|
case Catalogue::BootOption::LoadBOOT:
|
||||||
|
target.loadingCommand = "*LOAD !BOOT\n"; break;
|
||||||
|
case Catalogue::BootOption::RunBOOT:
|
||||||
|
target.loadingCommand = "*RUN !BOOT\n"; break;
|
||||||
|
case Catalogue::BootOption::ExecBOOT:
|
||||||
|
target.loadingCommand = "*EXEC !BOOT\n"; break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user