aboutsummaryrefslogtreecommitdiff
path: root/hw_html/mcureg.hpp
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavi.dcr@tutanota.com>2020-09-19 03:42:03 +0200
committerXavier Del Campo Romero <xavi.dcr@tutanota.com>2020-09-21 19:59:38 +0200
commitdc0bb4c93c4915b939ad1ecdc0745e53dc1f0d0f (patch)
treed4ad07aa93b8ba9fe949a963b8210fbf36b5b30a /hw_html/mcureg.hpp
parent0e001bd3d353a26ad527c5a7cedf11915c4a11ba (diff)
downloada9_free-dc0bb4c93c4915b939ad1ecdc0745e53dc1f0d0f.tar.gz
Work on xml-to-html converter for register documentation
Diffstat (limited to 'hw_html/mcureg.hpp')
-rw-r--r--hw_html/mcureg.hpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/hw_html/mcureg.hpp b/hw_html/mcureg.hpp
new file mode 100644
index 0000000..8d99de2
--- /dev/null
+++ b/hw_html/mcureg.hpp
@@ -0,0 +1,8 @@
+class mcureg
+{
+public:
+ enum access {UNDEF, C, R, S, W, RC, RS, RW, RSV, W1C, W1S};
+
+ explicit mcureg(access access);
+ virtual ~mcureg() = default;
+};