aboutsummaryrefslogtreecommitdiff
path: root/hw_html/mcureg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'hw_html/mcureg.cpp')
-rw-r--r--hw_html/mcureg.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/hw_html/mcureg.cpp b/hw_html/mcureg.cpp
new file mode 100644
index 0000000..a8db587
--- /dev/null
+++ b/hw_html/mcureg.cpp
@@ -0,0 +1,15 @@
+#include <mcureg.hpp>
+#include <mcubase.hpp>
+#include <bit.hpp>
+#include <list>
+#include <string>
+
+mcureg::mcureg(const std::string &name, const std::string &access) :
+ mcubase(name, access)
+{
+}
+
+void mcureg::add(const bit &bit)
+{
+ bits.push_back(bit);
+}