|
@@ -1,5 +1,6 @@
|
|
|
//! Functions for accessing Control and Status Registers
|
|
|
|
|
|
+#[cfg(target_arch = "riscv")]
|
|
|
macro_rules! csr_asm {
|
|
|
($op:ident, $csr:expr, $value:expr) => (
|
|
|
{
|
|
@@ -16,6 +17,14 @@ macro_rules! csr_asm {
|
|
|
)
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+#[cfg(not(target_arch = "riscv"))]
|
|
|
+macro_rules! csr_asm {
|
|
|
+ ($op:ident, $csr:expr, $value:expr) => {
|
|
|
+ 0
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
macro_rules! r {
|
|
|
($MOD:ident, $TYPE:ident, $CSR:expr) => (
|
|
|
pub struct R {
|