Re: [PATCH v2] avr: Fix wrong initial value of stack pointer

2023-11-28 Thread Philippe Mathieu-Daudé
On 27/11/23 20:22, Philippe Mathieu-Daudé wrote: Hi Gihun, On 27/11/23 03:54, Gihun Nam wrote: The current implementation initializes the stack pointer of AVR devices to 0. Although older AVR devices used to be like that, newer ones set it to RAMEND. Resolves: https://gitlab.com/qemu-project/q

Re: [PATCH v2] avr: Fix wrong initial value of stack pointer

2023-11-27 Thread Philippe Mathieu-Daudé
Hi Gihun, On 27/11/23 03:54, Gihun Nam wrote: The current implementation initializes the stack pointer of AVR devices to 0. Although older AVR devices used to be like that, newer ones set it to RAMEND. Resolves: https://gitlab.com/qemu-project/qemu/-/issues/1525 Signed-off-by: Gihun Nam --- Ed

[PATCH v2] avr: Fix wrong initial value of stack pointer

2023-11-27 Thread Gihun Nam
The current implementation initializes the stack pointer of AVR devices to 0. Although older AVR devices used to be like that, newer ones set it to RAMEND. Resolves: https://gitlab.com/qemu-project/qemu/-/issues/1525 Signed-off-by: Gihun Nam --- Edit code to use QOM property and add more descript