~vcs-imports/qemu/git

« back to all changes in this revision

Viewing changes to target-ppc/machine.c

  • Committer: ths
  • Date: 2007-06-17 15:32:30 UTC
  • Revision ID: git-v1:ffb04fcf089865952592f1f8855c2848d4514a89
Allow relative paths for the interpreter prefix in linux-user emulation.


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2984 c046a42c-6fe2-441c-8c8c-71466251a162

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#include "hw/hw.h"
2
 
#include "hw/boards.h"
3
 
 
4
 
void register_machines(void)
5
 
{
6
 
    qemu_register_machine(&heathrow_machine);
7
 
    qemu_register_machine(&core99_machine);
8
 
    qemu_register_machine(&prep_machine);
9
 
    qemu_register_machine(&ref405ep_machine);
10
 
    qemu_register_machine(&taihu_machine);
11
 
}
12
 
 
13
 
void cpu_save(QEMUFile *f, void *opaque)
14
 
{
15
 
}
16
 
 
17
 
int cpu_load(QEMUFile *f, void *opaque, int version_id)
18
 
{
19
 
    return 0;
20
 
}