Re: [PATCH 1/1] linux-user: add support for big endian variants of riscv

2023-07-23 Thread Alistair Francis
On Fri, Jun 30, 2023 at 7:45 AM Palmer Dabbelt wrote: > > On Fri, 30 Jun 2023 04:14:09 PDT (-0700), rory.opensou...@gmail.com wrote: > > RISCV architecture supports an optional big endian mode of operation. > > In this mode, data accesses are treated as big endian, while code is > > always in litt

Re: [PATCH 1/1] linux-user: add support for big endian variants of riscv

2023-06-29 Thread Palmer Dabbelt
On Fri, 30 Jun 2023 04:14:09 PDT (-0700), rory.opensou...@gmail.com wrote: RISCV architecture supports an optional big endian mode of operation. In this mode, data accesses are treated as big endian, while code is always in little endian format. This is similar to how the ARM architecture treats

[PATCH 1/1] linux-user: add support for big endian variants of riscv

2023-06-29 Thread Rory Bolt
RISCV architecture supports an optional big endian mode of operation. In this mode, data accesses are treated as big endian, while code is always in little endian format. This is similar to how the ARM architecture treats it's optional bi-endian support. This patch adds support for big endian RISCV