1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-25 11:17:26 +00:00

Introduces configuration options for the Apple II.

Specifically: II or II+? Disk II 13- or 16-sector? Or not at all?
This commit is contained in:
Thomas Harte
2018-05-03 19:37:32 -04:00
parent 65ba9ee6e7
commit 723ee88043
8 changed files with 198 additions and 74 deletions
+2 -1
View File
@@ -14,7 +14,8 @@ Analyser::Static::TargetList Analyser::Static::AppleII::GetTargets(const Media &
target->machine = Machine::AppleII;
target->media = media;
target->has_disk = !target->media.disks.empty();
if(!target->media.disks.empty())
target->disk_controller = Target::DiskController::SixteenSector;
TargetList targets;
targets.push_back(std::move(target));