Re: [Qemu-devel] Memory read/write issues

2011-11-27 Thread Andreas Färber
Am 27.11.2011 15:17, schrieb Avi Kivity: > On 11/27/2011 04:07 PM, Andreas Färber wrote: >> Thanks a lot! You were right, setting TARGET_PAGE_BITS to 8 solves this >> issue. >> >> I'd still like to fix this subpage case for others' benefit. Do you have >> any pointer where I should set breakpoints

Re: [Qemu-devel] Memory read/write issues

2011-11-27 Thread Avi Kivity
On 11/27/2011 04:07 PM, Andreas Färber wrote: > Thanks a lot! You were right, setting TARGET_PAGE_BITS to 8 solves this > issue. > > I'd still like to fix this subpage case for others' benefit. Do you have > any pointer where I should set breakpoints / review code? The subpage code (scheduled for

Re: [Qemu-devel] Memory read/write issues

2011-11-27 Thread Andreas Färber
Am 27.11.2011 09:32, schrieb Avi Kivity: > On 11/25/2011 06:25 PM, Andreas Färber wrote: >> Am 24.11.2011 00:59, schrieb Andreas Färber: >>> Unlike PowerPC, an architecture that I'm trying to emulate does not >>> store branch instructions in the reset vector but a memory address. I'm >>> therefore

Re: [Qemu-devel] Memory read/write issues

2011-11-27 Thread Avi Kivity
On 11/25/2011 06:25 PM, Andreas Färber wrote: > Am 24.11.2011 00:59, schrieb Andreas Färber: > > Unlike PowerPC, an architecture that I'm trying to emulate does not > > store branch instructions in the reset vector but a memory address. I'm > > therefore trying to read physical address 0x0 and

[Qemu-devel] Memory read/write issues (was: Initializing PC from memory on reset?)

2011-11-25 Thread Andreas Färber
Am 24.11.2011 00:59, schrieb Andreas Färber: > Unlike PowerPC, an architecture that I'm trying to emulate does not > store branch instructions in the reset vector but a memory address. I'm > therefore trying to read physical address 0x0 and store its value > into my env->pc. > > I've verified