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:
parent
7b90c36463
commit
5235262855
@ -176,7 +176,7 @@ class ConcreteMachine:
|
||||
executor_.bus.read(address, address, false);
|
||||
}
|
||||
while(true) {
|
||||
uint8_t next;
|
||||
uint8_t next = 0;
|
||||
executor_.bus.read(address, next, false);
|
||||
if(next < 0x20) break;
|
||||
desc.push_back(static_cast<char>(next) & 0x7f);
|
||||
|
@ -62,7 +62,7 @@
|
||||
</Testables>
|
||||
</TestAction>
|
||||
<LaunchAction
|
||||
buildConfiguration = "Debug"
|
||||
buildConfiguration = "Release"
|
||||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
||||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
||||
enableASanStackUseAfterReturn = "YES"
|
||||
|
Loading…
Reference in New Issue
Block a user