mirror of
https://github.com/cccriscv/mini-riscv-os.git
synced 2025-11-16 04:24:33 +00:00
11 lines
150 B
C
11 lines
150 B
C
#include "os.h"
|
|
|
|
void spinlock_lock()
|
|
{
|
|
w_mstatus(r_mstatus() & ~MSTATUS_MIE);
|
|
}
|
|
|
|
void spinlock_unlock()
|
|
{
|
|
w_mstatus(r_mstatus() | MSTATUS_MIE);
|
|
} |