mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
SH2 drc, dummy soc for GP2X
git-svn-id: file:///home/notaz/opt/svn/PicoDrive@823 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
parent
7f5a3fc12a
commit
274f95a9a9
10 changed files with 158 additions and 37 deletions
|
@ -146,8 +146,8 @@ void plat_early_init(void)
|
|||
default_cpu_clock = 533;
|
||||
break;
|
||||
default:
|
||||
fprintf(stderr, "could not recognize SoC, bailing out.\n");
|
||||
exit(1);
|
||||
printf("could not recognize SoC, running in dummy mode.\n");
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -167,6 +167,7 @@ void plat_init(void)
|
|||
menu_plat_setup(1);
|
||||
break;
|
||||
default:
|
||||
dummy_init();
|
||||
break;
|
||||
}
|
||||
|
||||
|
@ -193,6 +194,9 @@ void plat_finish(void)
|
|||
case SOCID_POLLUX:
|
||||
pollux_finish();
|
||||
break;
|
||||
default:
|
||||
dummy_finish();
|
||||
break;
|
||||
}
|
||||
|
||||
sndout_oss_exit();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue