~ubuntu-branches/ubuntu/hardy/kvm/hardy-backports

« back to all changes in this revision

Viewing changes to qemu/hw/ppc440.h

  • Committer: Bazaar Package Importer
  • Author(s): Soren Hansen
  • Date: 2008-02-26 13:10:57 UTC
  • mfrom: (1.1.18 upstream)
  • Revision ID: james.westby@ubuntu.com-20080226131057-s67x6l89mtjw1x9b
Tags: 1:62+dfsg-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Qemu PowerPC 440 board emualtion
 
3
 *
 
4
 * Copyright 2007 IBM Corporation.
 
5
 * Authors: Jerone Young <jyoung5@us.ibm.com>
 
6
 *
 
7
 * This work is licensed under the GNU GPL licence version 2 or later
 
8
 *
 
9
 */
 
10
 
 
11
#ifndef QEMU_PPC440_H
 
12
#define QEMU_PPC440_H
 
13
 
 
14
#include "hw.h"
 
15
#include "ppc.h"
 
16
#include "ppc405.h"
 
17
#include "pc.h"
 
18
#include "qemu-timer.h"
 
19
#include "sysemu.h"
 
20
#include "exec-all.h"
 
21
#include "boards.h"
 
22
 
 
23
void ppc440_init(CPUState *env,
 
24
                target_phys_addr_t ram_bases[2],
 
25
                target_phys_addr_t ram_sizes[2],
 
26
                qemu_irq **picp,
 
27
                int do_init);
 
28
 
 
29
#endif