mirror of
https://github.com/TomHarte/CLK.git
synced 2025-08-15 14:27:29 +00:00
Add comments.
This commit is contained in:
@@ -65,12 +65,15 @@ Disk2MG::DiskOrMassStorageDevice Disk2MG::open(const std::string &file_name) {
|
|||||||
// TODO: DOS 3.3 sector order.
|
// TODO: DOS 3.3 sector order.
|
||||||
break;
|
break;
|
||||||
case 1:
|
case 1:
|
||||||
// ProDOS order, which could still mean Macintosh-style or Apple II-style. Try them both.
|
// 'ProDOS order', which could still mean Macintosh-style (ie. not ProDOS, but whatever)
|
||||||
|
// or Apple II-style. Try them both.
|
||||||
try {
|
try {
|
||||||
return new DiskImageHolder<Storage::Disk::MacintoshIMG>(file_name, MacintoshIMG::FixedType::GCR, data_start, data_size);
|
return new DiskImageHolder<Storage::Disk::MacintoshIMG>(file_name, MacintoshIMG::FixedType::GCR, data_start, data_size);
|
||||||
} catch(...) {}
|
} catch(...) {}
|
||||||
|
|
||||||
// TODO: Apple II-style.
|
// TODO: Apple II-style.
|
||||||
|
|
||||||
|
// TODO: hard-disk image.
|
||||||
break;
|
break;
|
||||||
case 2:
|
case 2:
|
||||||
// TODO: NIB data (yuck!).
|
// TODO: NIB data (yuck!).
|
||||||
|
Reference in New Issue
Block a user