From 0ced417e739c49dbff242d82cce41c1b6507c31f Mon Sep 17 00:00:00 2001 From: Luke Usher Date: Sat, 1 Jun 2019 12:12:42 +0100 Subject: [PATCH] dsp: Use endianness handling functions when accessing memory --- hw/xbox/dsp/dsp_cpu.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/hw/xbox/dsp/dsp_cpu.c b/hw/xbox/dsp/dsp_cpu.c index 24eaeb8d6b..cda605fd3c 100644 --- a/hw/xbox/dsp/dsp_cpu.c +++ b/hw/xbox/dsp/dsp_cpu.c @@ -26,6 +26,8 @@ #include #include +#include "qemu/osdep.h" +#include "qemu/bswap.h" #include "dsp_cpu.h" #define TRACE_DSP_DISASM 0 @@ -957,7 +959,7 @@ static uint32_t read_memory_p(dsp_core_t* dsp, uint32_t address) { assert((address & 0xFF000000) == 0); assert(address < DSP_PRAM_SIZE); - uint32_t r = dsp->pram[address]; + uint32_t r = ldl_le_p(&dsp->pram[address]); assert((r & 0xFF000000) == 0); return r; } @@ -1019,7 +1021,7 @@ static void write_memory_raw(dsp_core_t* dsp, int space, uint32_t address, uint3 dsp->yram[address] = value; } else if (space == DSP_SPACE_P) { assert(address < DSP_PRAM_SIZE); - dsp->pram[address] = value; + stl_le_p(&dsp->pram[address], value); } else { assert(false); }