aboutsummaryrefslogtreecommitdiff
path: root/kernel/trap.c
Commit message (Collapse)AuthorAgeFilesLines
* Enable exception handling from user modeMiquel Sabaté Solà2024-11-221-7/+36
| | | | | | | | This allows us to actually catch system calls and start to run user space programs. That being said, the whole thing is still pretty brittle, and the scheduler is not quite there yet. Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
* Enable the timer from the SBI interfaceMiquel Sabaté Solà2024-11-221-0/+125
A basic interrupt handler has been implemented which tracks the seconds that have been elapsing along the way. Depending on the value of these seconds, then a task has to be called. Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>