1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-03-28 10:31:38 +00:00

Simplify control flow.

This commit is contained in:
Thomas Harte 2023-12-12 09:29:28 -05:00
parent add3257258
commit 070f8d8bc3
2 changed files with 7 additions and 13 deletions
Machines/PCCompatible
OSBindings/Mac/Clock Signal.xcodeproj/xcshareddata/xcschemes

@ -152,28 +152,22 @@ class FloppyController {
const auto sector = drives_[decoder_.target().drive].sector(target.head, target.sector);
if(sector) {
bool wrote_in_full = true;
for(int c = 0; c < 128 << target.size; c++) {
const auto access_result = dma_.write(2, sector->samples[0].data()[c]);
switch(access_result) {
default: break;
// Default: keep going.
default: continue;
// Anything else: update flags and exit.
case AccessResult::NotAccepted:
complete = true;
wrote_in_full = false;
status_.set(Intel::i8272::Status1::OverRun);
status_.set(Intel::i8272::Status0::AbnormalTermination);
break;
case AccessResult::AcceptedWithEOP:
complete = true;
break;
}
if(access_result != AccessResult::Accepted) {
break;
}
}
if(!wrote_in_full) {
status_.set(Intel::i8272::Status1::OverRun);
status_.set(Intel::i8272::Status0::AbnormalTermination);
break;
}

@ -62,7 +62,7 @@
</Testables>
</TestAction>
<LaunchAction
buildConfiguration = "Release"
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
enableASanStackUseAfterReturn = "YES"