1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-21 21:33:54 +00:00

Add default value.

This commit is contained in:
Thomas Harte 2024-05-24 15:29:11 -04:00
parent 7b90c36463
commit 5235262855
2 changed files with 2 additions and 2 deletions

View File

@ -176,7 +176,7 @@ class ConcreteMachine:
executor_.bus.read(address, address, false); executor_.bus.read(address, address, false);
} }
while(true) { while(true) {
uint8_t next; uint8_t next = 0;
executor_.bus.read(address, next, false); executor_.bus.read(address, next, false);
if(next < 0x20) break; if(next < 0x20) break;
desc.push_back(static_cast<char>(next) & 0x7f); desc.push_back(static_cast<char>(next) & 0x7f);

View File

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