Skip to content

Commit

Permalink
Hack to restart hybrid 68000 CPU for Minimig core
Browse files Browse the repository at this point in the history
  • Loading branch information
bbond007 committed Apr 17, 2021
1 parent 9cd404e commit 230173a
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion menu.cpp
Expand Up @@ -4874,7 +4874,16 @@ void HandleUI(void)
else if (menusub == 12)
{
menustate = MENU_NONE1;
minimig_reset();
if (strcasestr(get_rbf_name(), "_Hybrid") != NULL)
{
sprintf(s, "%s/68000.sh STOP", getFullPath(user_io_get_core_path()));
system(s);
minimig_reset();
sprintf(s, "%s/68000.sh START", getFullPath(user_io_get_core_path()));
system(s);
}
else
minimig_reset();
}
else if (menusub == 13)
{
Expand Down

0 comments on commit 230173a

Please sign in to comment.