mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-10 02:02:30 +00:00
This commit is contained in:
parent
476ae98a32
commit
374b1b5387
3 changed files with 4 additions and 4 deletions
|
|
@ -141,7 +141,7 @@ namespace Cosmos.Build.Windows {
|
|||
// Might reenable serial file later for post debugging of CPU
|
||||
// etc since serial to TCP on a byte level is likely highly innefficient
|
||||
// with the packet overhead
|
||||
+ " -serial tcp::4444,server"
|
||||
+ " -serial tcp::4444,server" + (aWaitSerialTCP ? "" : ",nowait")
|
||||
+ " -serial \"file:" + BuildPath + "debug.dbg\" "
|
||||
// Enable acceleration if we are not using GDB
|
||||
+ (aGDB ? " -S -s" : " -kernel-kqemu")
|
||||
|
|
|
|||
|
|
@ -37,10 +37,10 @@
|
|||
<Bold>General Options</Bold>
|
||||
<LineBreak/>
|
||||
<InlineUIContainer>
|
||||
<StackPanel>
|
||||
<StackPanel HorizontalAlignment="Left">
|
||||
<CheckBox Name="chckCompileIL" IsChecked="True">Compile IL. Do not uncheck this unless you understand the impact.</CheckBox>
|
||||
<Label>Cosmos Debug Port</Label>
|
||||
<ComboBox Name="cmboDebugPort"></ComboBox>
|
||||
<ComboBox Name="cmboDebugPort" HorizontalAlignment="Left" Width="100"></ComboBox>
|
||||
</StackPanel>
|
||||
</InlineUIContainer>
|
||||
</Paragraph>
|
||||
|
|
|
|||
|
|
@ -92,7 +92,7 @@ namespace Cosmos.Build.Windows {
|
|||
}
|
||||
}
|
||||
|
||||
cmboDebugPort.Items.Add("None");
|
||||
cmboDebugPort.SelectedIndex = cmboDebugPort.Items.Add("None");
|
||||
cmboDebugPort.Items.Add("COM1");
|
||||
cmboDebugPort.Items.Add("COM2");
|
||||
cmboDebugPort.Items.Add("COM3");
|
||||
|
|
|
|||
Loading…
Reference in a new issue