Re: [Qemu-devel] [RFC 01/28] target-xtensa: add target stubs

2011-05-04 Thread Blue Swirl
On Wed, May 4, 2011 at 3:59 AM, Max Filippov wrote: > Signed-off-by: Max Filippov > --- >  Makefile.target           |    2 + >  arch_init.c               |    2 + >  arch_init.h               |    1 + >  cpu-exec.c                |   10 + >  elf.h                     |    2 + >  hw/xtensa_pi

Re: [Qemu-devel] [RFC 01/28] target-xtensa: add target stubs

2011-05-03 Thread Max Filippov
> +#elif defined(TARGET_XTENSA) > +                    if (interrupt_request & CPU_INTERRUPT_HARD) { > +                        env->exception_index = EXC_IRQ; > +                        do_interrupt(env); > +                        next_tb = 0; > +                    } Looks like I've moved this

[Qemu-devel] [RFC 01/28] target-xtensa: add target stubs

2011-05-03 Thread Max Filippov
Signed-off-by: Max Filippov --- Makefile.target |2 + arch_init.c |2 + arch_init.h |1 + cpu-exec.c| 10 + elf.h |2 + hw/xtensa_pic.c | 11 ++ target-xtensa/cpu.h | 84 +++