Re: [PATCH V4] target/riscv: Align the data type of reset vector address

2021-03-30 Thread Alistair Francis
On Sun, Mar 28, 2021 at 11:39 PM Dylan Jhong wrote: > > Use target_ulong to instead of uint64_t on reset vector address > to adapt on both 32/64 machine. > > Signed-off-by: Dylan Jhong > Signed-off-by: Ruinland ChuanTzu Tsai Thanks! Applied to riscv-to-apply.next Alistair > --- > target/ris

[PATCH V4] target/riscv: Align the data type of reset vector address

2021-03-28 Thread Dylan Jhong
Use target_ulong to instead of uint64_t on reset vector address to adapt on both 32/64 machine. Signed-off-by: Dylan Jhong Signed-off-by: Ruinland ChuanTzu Tsai --- target/riscv/cpu.c | 5 +++-- target/riscv/cpu.h | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/target/ris