diff options
Diffstat (limited to 'hw/pl011.c')
-rw-r--r-- | hw/pl011.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/pl011.c b/hw/pl011.c index 29e551ad8b..64b753019d 100644 --- a/hw/pl011.c +++ b/hw/pl011.c @@ -232,7 +232,7 @@ void pl011_init(uint32_t base, qemu_irq irq, s = (pl011_state *)qemu_mallocz(sizeof(pl011_state)); iomemtype = cpu_register_io_memory(0, pl011_readfn, pl011_writefn, s); - cpu_register_physical_memory(base, 0x00000fff, iomemtype); + cpu_register_physical_memory(base, 0x00001000, iomemtype); s->base = base; s->irq = irq; s->chr = chr; |