rv64: Implement RISC-V support, implement VisionFive2 support #34

Merged
alnyan merged 17 commits from feature/rv64 into master 2025-01-21 19:54:55 +02:00
Showing only changes of commit 65b8c0ee67 - Show all commits

View File

@ -21,7 +21,6 @@ pub fn handle_interrupt() {
sbi::sbi_set_timer(now.wrapping_add(frequency / TICK_RATE));
if Cpu::local().is_bootstrap() {
let frequency = frequency * 1000;
let last = LAST_TICK.swap(now, Ordering::Release);
if frequency != 0 {
if let Some(delta) = now.checked_sub(last) {