On Tue, 2025-09-02 at 11:56 -0500, Miles Glenn wrote:
> > > +
> > > +static void main_cpu_reset(void *opaque)
> > > +{
> > > + PowerPCCPU *cpu = opaque;
> > > +
> > > + cpu_reset(CPU(cpu));
> >
> > There are no register settings ? Just asking
> >
>
> Admittedly, I did not do much digging into the reset case. I'll look
> into it.
Cédric,
As far as I can tell, it doesn't look like we need to add any other
registers here besides the cpu registers, which are already handled by
cpu_reset(). Also, I did verify that executing a system_reset from the
QEMU command line works as expected (resets to the correct vector and
executes successfully).
Thanks,
Glenn