mirror of
https://github.com/TomHarte/CLK.git
synced 2024-12-25 18:30:21 +00:00
Added some TODOs, re-enabled master Acorn decision.
This commit is contained in:
parent
6522a9a6c2
commit
556b77f2fd
@ -112,6 +112,6 @@ void StaticAnalyser::Acorn::AddTargets(
|
||||
|
||||
// TODO: disks
|
||||
|
||||
// if(target.tapes.size() || target.cartridges.size())
|
||||
if(target.tapes.size() || target.cartridges.size())
|
||||
destination.push_back(target);
|
||||
}
|
||||
|
@ -32,5 +32,16 @@ void StaticAnalyser::Commodore::AddTargets(
|
||||
tape->reset();
|
||||
std::list<File> files = GetFiles(tape);
|
||||
tape->reset();
|
||||
|
||||
// continue if there are any files
|
||||
if(files.size())
|
||||
{
|
||||
// TODO: decide between ,1 (don't relocate; for machine code) and ,0 (relocate; for BASIC)
|
||||
// TODO: decide memory model (based on extents and sizes)
|
||||
// TODO: decide machine (disassemble?)
|
||||
}
|
||||
}
|
||||
|
||||
if(target.tapes.size() || target.cartridges.size() || target.disks.size())
|
||||
destination.push_back(target);
|
||||
}
|
Loading…
Reference in New Issue
Block a user