On Wed, Apr 13, 2011 at 6:58 PM, Nigel Horne <760...@bugs.launchpad.net> wrote: > qemu-system-sparc: /home/njh/src/qemu/exec.c:2614: > cpu_register_physical_memory_offset: Assertion `size' failed.
I you ./configure with --disable-strip and run under GDB using "gdb --args <command-line here>" then you can get a backtrace. Just enter the GDB "r" command to run QEMU and then the "bt" command to get a backtrace once the assertion has triggered. The backtrace will show which device is registering a zero-size memory region. It will be easy to fix this once we have a backtrace. Stefan