1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-21 17:16:44 +00:00

Any Oric-format disks that are inserted now make it all the way to the Oric, along with a request to emulate the Microdisc. It has received a copy of the ROM. The ball is entirely in its court now.

This commit is contained in:
Thomas Harte
2016-11-21 20:59:25 +08:00
parent fc1afe9351
commit ea33a28695
5 changed files with 21 additions and 6 deletions
+7
View File
@@ -112,6 +112,13 @@ void StaticAnalyser::Oric::AddTargets(
}
}
// trust that any disk supplied can be handled by the Microdisc. TODO: check.
if(!disks.empty())
{
target.oric.has_microdisc = true;
target.disks = disks;
}
// TODO: really this should add two targets if not all votes agree
target.oric.use_atmos_rom = basic11_votes >= basic10_votes;
+1
View File
@@ -52,6 +52,7 @@ struct Target {
struct {
bool use_atmos_rom;
bool has_microdisc;
} oric;
};