Re: [PATCH v2 1/8] hw/mips: Make bootloader addresses unsgined

2021-01-03 Thread Philippe Mathieu-Daudé
On 1/3/21 4:57 PM, Philippe Mathieu-Daudé wrote: > On 1/2/21 12:15 AM, Philippe Mathieu-Daudé wrote: >> On 12/15/20 7:41 AM, Jiaxun Yang wrote: >>> Address should be unsigned anyway, otherwise it may carry >>> calculations wrongly. >>> >>> Signed-off-by: Jiaxun Yang >>> --- >>> hw/mips/fuloong2e.

Re: [PATCH v2 1/8] hw/mips: Make bootloader addresses unsgined

2021-01-03 Thread Philippe Mathieu-Daudé
On 1/2/21 12:15 AM, Philippe Mathieu-Daudé wrote: > On 12/15/20 7:41 AM, Jiaxun Yang wrote: >> Address should be unsigned anyway, otherwise it may carry >> calculations wrongly. >> >> Signed-off-by: Jiaxun Yang >> --- >> hw/mips/fuloong2e.c | 12 ++-- >> hw/mips/malta.c | 22 +

Re: [PATCH v2 1/8] hw/mips: Make bootloader addresses unsgined

2021-01-01 Thread Philippe Mathieu-Daudé
On 12/15/20 7:41 AM, Jiaxun Yang wrote: > Address should be unsigned anyway, otherwise it may carry > calculations wrongly. > > Signed-off-by: Jiaxun Yang > --- > hw/mips/fuloong2e.c | 12 ++-- > hw/mips/malta.c | 22 +++--- > 2 files changed, 17 insertions(+), 17 del

[PATCH v2 1/8] hw/mips: Make bootloader addresses unsgined

2020-12-14 Thread Jiaxun Yang
Address should be unsigned anyway, otherwise it may carry calculations wrongly. Signed-off-by: Jiaxun Yang --- hw/mips/fuloong2e.c | 12 ++-- hw/mips/malta.c | 22 +++--- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/hw/mips/fuloong2e.c b/hw/mips/fu