aboutsummaryrefslogtreecommitdiff
path: root/src/registers/lr.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/registers/lr.rs')
-rw-r--r--src/registers/lr.rs29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/registers/lr.rs b/src/registers/lr.rs
new file mode 100644
index 0000000..78b8795
--- /dev/null
+++ b/src/registers/lr.rs
@@ -0,0 +1,29 @@
+// SPDX-License-Identifier: Apache-2.0 OR MIT
+//
+// Copyright (c) 2018-2022 by the author(s)
+//
+// Author(s):
+// - Andre Richter <andre.o.richter@gmail.com>
+// - Alban Seurat <alban.seurat@me.com>
+
+//! The link register
+
+use tock_registers::interfaces::{Readable, Writeable};
+
+pub struct Reg;
+
+impl Readable for Reg {
+ type T = u64;
+ type R = ();
+
+ read_raw!(u64, "lr", "x");
+}
+
+impl Writeable for Reg {
+ type T = u64;
+ type R = ();
+
+ write_raw!(u64, "lr", "x");
+}
+
+pub const LR: Reg = Reg {};