mirror of https://gitee.com/openkylin/qemu.git
Byte swapping bug in arm semihosting (Paul Brook)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1553 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
7ebab69910
commit
89353a790b
|
@ -178,7 +178,7 @@ uint32_t do_arm_semihosting(CPUState *env)
|
|||
ts->heap_limit = limit;
|
||||
}
|
||||
|
||||
ptr = (uint32_t *)tswap32(ARG(0));
|
||||
ptr = (uint32_t *)ARG(0);
|
||||
ptr[0] = tswap32(ts->heap_base);
|
||||
ptr[1] = tswap32(ts->heap_limit);
|
||||
ptr[2] = tswap32(ts->stack_base);
|
||||
|
|
Loading…
Reference in New Issue