Explorar o código

`riscv`: Set any bit in sie (#1)

LoGin hai 1 ano
pai
achega
5c01a8320e
Modificáronse 1 ficheiros con 12 adicións e 0 borrados
  1. 12 0
      riscv/src/register/sie.rs

+ 12 - 0
riscv/src/register/sie.rs

@@ -45,3 +45,15 @@ set_clear_csr!(
 set_clear_csr!(
     /// Supervisor External Interrupt Enable
     , set_sext, clear_sext, 1 << 9);
+
+/// Set the bits in the register
+#[inline]
+pub unsafe fn set_bits(bits: usize) {
+    _set(bits)
+}
+
+/// Clear the bits in the register
+#[inline]
+pub unsafe fn clear_bits(bits: usize) {
+    _clear(bits)
+}