aboutsummaryrefslogtreecommitdiff
path: root/hw_html/mcureg.cpp
blob: a8db5871c9f8abeaded226965f40aee557ffc6da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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);
}