Fix isofile typo

This commit is contained in:
Charles Betros 2020-10-22 13:54:33 -05:00
parent a42673b8a4
commit ffe4dc9e4e

View file

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