Skip to content

Commit

Permalink
Enable magic breakpoints in bochs debugger.
Browse files Browse the repository at this point in the history
  • Loading branch information
mterwoord committed Jun 23, 2016
1 parent a194f1d commit a6afa5b
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,11 @@ private void InitializeKeyValues()
defaultConfigs.Set("ata0-master", defaultConfigs.Get("ata0-master").Replace("%CDROMBOOTPATH%", mParams["ISOFile"]));
defaultConfigs.Set("ata1-master", defaultConfigs.Get("ata1-master").Replace("%HARDDISKPATH%", mHarddiskFile));
defaultConfigs.Set("debug_symbols", defaultConfigs.Get("debug_symbols").Replace("%DEBUGSYMBOLSPATH%", Path.ChangeExtension(mParams["ISOFile"], "sym")));
}
if (_useDebugVersion)
{
defaultConfigs.Set("magic_break", "enabled=1");
}
}

private void GenerateConfiguration(string filePath)
{
Expand Down

0 comments on commit a6afa5b

Please sign in to comment.