diff options
author | balrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-04-30 02:24:42 +0000 |
---|---|---|
committer | balrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-04-30 02:24:42 +0000 |
commit | 9d55199763d4067158d6c556e78312f7d007d914 (patch) | |
tree | e1ee7532b8bb77430321354484852fa6ea403eae /target-arm/cpu.h | |
parent | Spitz PDA, example PXA270 machine (four similar models). (diff) | |
download | qemu-kvm-9d55199763d4067158d6c556e78312f7d007d914.tar.gz qemu-kvm-9d55199763d4067158d6c556e78312f7d007d914.tar.bz2 qemu-kvm-9d55199763d4067158d6c556e78312f7d007d914.zip |
Account for machine with RAM which is not mapped at 0x0 in arm_boot.c.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2757 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-arm/cpu.h')
-rw-r--r-- | target-arm/cpu.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/target-arm/cpu.h b/target-arm/cpu.h index 7cb08ebaf..09083b723 100644 --- a/target-arm/cpu.h +++ b/target-arm/cpu.h @@ -144,12 +144,13 @@ typedef struct CPUARMState { CPU_COMMON - /* These fields after the common ones so thes are preserved on reset. */ + /* These fields after the common ones so they are preserved on reset. */ int ram_size; const char *kernel_filename; const char *kernel_cmdline; const char *initrd_filename; int board_id; + target_phys_addr_t loader_start; } CPUARMState; CPUARMState *cpu_arm_init(void); |