mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-24 12:35:31 +00:00
Fix isofile typo
This commit is contained in:
parent
a42673b8a4
commit
ffe4dc9e4e
1 changed files with 3 additions and 3 deletions
|
|
@ -37,7 +37,7 @@ namespace Cosmos.Debug.Hosts
|
||||||
|
|
||||||
if (aParams.ContainsKey("ISOFile"))
|
if (aParams.ContainsKey("ISOFile"))
|
||||||
{
|
{
|
||||||
_isoFile = aParams["IOSFile"];
|
_isoFile = aParams["ISOFile"];
|
||||||
}
|
}
|
||||||
|
|
||||||
_debugPortString = "Cosmos\\Serial";
|
_debugPortString = "Cosmos\\Serial";
|
||||||
|
|
@ -59,10 +59,10 @@ namespace Cosmos.Debug.Hosts
|
||||||
|
|
||||||
if (!string.IsNullOrWhiteSpace(_debugPortString))
|
if (!string.IsNullOrWhiteSpace(_debugPortString))
|
||||||
{
|
{
|
||||||
xQemuArguments += $" -chardev pipe,path=\\\\Cosmos\\Serial,id=Cosmos -device isa-serial,chardev=Cosmos";
|
xQemuArguments += @" -chardev console,id=CosmosConsole -chardev pipe,path=\Cosmos\Serial,id=Cosmos -device isa-serial,chardev=Cosmos";
|
||||||
}
|
}
|
||||||
|
|
||||||
xQemuArguments += " -boot d";
|
xQemuArguments += " -vga std -boot d -no-shutdown -no-reboot";
|
||||||
|
|
||||||
qemuStartInfo.Arguments = xQemuArguments;
|
qemuStartInfo.Arguments = xQemuArguments;
|
||||||
if (RedirectOutput)
|
if (RedirectOutput)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue