mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 16:53:55 -06:00
hw/mips: Have mips_cpu_create_with_clock() take an endianness argument
mips_cpu_create_with_clock() creates a vCPU. Pass it the vCPU endianness requested by argument. Update the board call sites. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Jiaxun Yang <jiaxun.yang@flygoat.com> Tested-by: Jiaxun Yang <jiaxun.yang@flygoat.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20241010215015.44326-17-philmd@linaro.org>
This commit is contained in:
parent
805659a895
commit
3e8f019be7
7 changed files with 15 additions and 7 deletions
|
@ -212,7 +212,8 @@ static void mips_jazz_init(MachineState *machine,
|
|||
* ext_clk[jazz_model].pll_mult);
|
||||
|
||||
/* init CPUs */
|
||||
cpu = mips_cpu_create_with_clock(machine->cpu_type, cpuclk);
|
||||
cpu = mips_cpu_create_with_clock(machine->cpu_type, cpuclk,
|
||||
TARGET_BIG_ENDIAN);
|
||||
env = &cpu->env;
|
||||
qemu_register_reset(main_cpu_reset, cpu);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue