This commit is contained in:
kudzu_cp 2008-03-23 17:41:25 +00:00
parent 476ae98a32
commit 374b1b5387
3 changed files with 4 additions and 4 deletions

View file

@ -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")

View file

@ -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>

View file

@ -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");