diff options
author | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-12-01 18:59:50 +0000 |
---|---|---|
committer | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-12-01 18:59:50 +0000 |
commit | f4488405e270491ff08d951d5a3ff5709ec8f141 (patch) | |
tree | f23cfaffa61efb36aa46dfeb771ad33cbfd4f3aa /hw/mpcore.c | |
parent | 9857cb6eeca034358811c7acddb79de2e1205cd9 (diff) | |
download | qemu-f4488405e270491ff08d951d5a3ff5709ec8f141.tar.gz qemu-f4488405e270491ff08d951d5a3ff5709ec8f141.tar.bz2 qemu-f4488405e270491ff08d951d5a3ff5709ec8f141.zip |
Change MMIO callbacks to use offsets, not absolute addresses.
Signed-off-by: Paul Brook <paul@codesourcery.com>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5849 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/mpcore.c')
-rw-r--r-- | hw/mpcore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/mpcore.c b/hw/mpcore.c index d5b28fe4bd..17c8d6c6e1 100644 --- a/hw/mpcore.c +++ b/hw/mpcore.c @@ -265,7 +265,7 @@ static qemu_irq *mpcore_priv_init(uint32_t base, qemu_irq *pic_irq) s = (mpcore_priv_state *)qemu_mallocz(sizeof(mpcore_priv_state)); if (!s) return NULL; - s->gic = gic_init(base, pic_irq); + s->gic = gic_init(base + 0x1000, pic_irq); if (!s->gic) return NULL; iomemtype = cpu_register_io_memory(0, mpcore_priv_readfn, |