mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 09:13:55 -06:00
Fix typo in help output.
List ARM cpus. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2475 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
3371d27293
commit
5adb4839e3
3 changed files with 14 additions and 1 deletions
|
@ -47,6 +47,16 @@ static const struct arm_cpu_t arm_cpu_names[] = {
|
|||
{ 0, NULL}
|
||||
};
|
||||
|
||||
void arm_cpu_list(void)
|
||||
{
|
||||
int i;
|
||||
|
||||
printf ("Available CPUs:\n");
|
||||
for (i = 0; arm_cpu_names[i].name; i++) {
|
||||
printf(" %s\n", arm_cpu_names[i].name);
|
||||
}
|
||||
}
|
||||
|
||||
void cpu_arm_set_model(CPUARMState *env, const char *name)
|
||||
{
|
||||
int i;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue