1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-05 10:28:58 +00:00

Adds missing call to flush.

This commit is contained in:
Thomas Harte 2019-05-03 23:31:12 -04:00
parent fa8c804d47
commit 417a3e1540
2 changed files with 2 additions and 1 deletions

View File

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

View File

@ -2030,6 +2030,7 @@ template <class T, bool dtack_is_implicit, bool signal_will_perform> void Proces
} }
} }
bus_handler_.flush();
e_clock_phase_ = (e_clock_phase_ + cycles_run_for) % 10; e_clock_phase_ = (e_clock_phase_ + cycles_run_for) % 10;
half_cycles_left_to_run_ = remaining_duration - cycles_run_for; half_cycles_left_to_run_ = remaining_duration - cycles_run_for;
} }