mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 17:53:56 -06:00
Fix off-by-one memory region sizes.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2931 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
1bc012f65a
commit
187337f8b0
21 changed files with 39 additions and 39 deletions
|
@ -532,10 +532,10 @@ qemu_irq *arm_gic_init(uint32_t base, qemu_irq parent_irq)
|
|||
if (base != 0xffffffff) {
|
||||
iomemtype = cpu_register_io_memory(0, gic_cpu_readfn,
|
||||
gic_cpu_writefn, s);
|
||||
cpu_register_physical_memory(base, 0x00000fff, iomemtype);
|
||||
cpu_register_physical_memory(base, 0x00001000, iomemtype);
|
||||
iomemtype = cpu_register_io_memory(0, gic_dist_readfn,
|
||||
gic_dist_writefn, s);
|
||||
cpu_register_physical_memory(base + 0x1000, 0x00000fff, iomemtype);
|
||||
cpu_register_physical_memory(base + 0x1000, 0x00001000, iomemtype);
|
||||
s->base = base;
|
||||
} else {
|
||||
s->base = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue