Re: [PATCH 02/18] bsd-user: Add RISC-V CPU execution loop and syscall handling

2024-08-02 Thread Richard Henderson
On 8/2/24 18:34, Ajeet Singh wrote: From: Mark Corbin Implemented the RISC-V CPU execution loop, including handling various exceptions and system calls. The loop continuously executes CPU instructions,processes exceptions, and handles system calls by invoking FreeBSD syscall handlers. Signed-of

[PATCH 02/18] bsd-user: Add RISC-V CPU execution loop and syscall handling

2024-08-02 Thread Ajeet Singh
From: Mark Corbin Implemented the RISC-V CPU execution loop, including handling various exceptions and system calls. The loop continuously executes CPU instructions,processes exceptions, and handles system calls by invoking FreeBSD syscall handlers. Signed-off-by: Mark Corbin Signed-off-by: Aje