Using new IO Port
This commit is contained in:
@@ -100,11 +100,11 @@ public:
|
||||
return this->value;
|
||||
}
|
||||
|
||||
constexpr IOPort<T>& operator=(T value) {
|
||||
constexpr void operator=(T value) {
|
||||
this->value = value;
|
||||
}
|
||||
|
||||
constexpr volatile IOPort<T>& operator=(T value) volatile {
|
||||
constexpr void operator=(T value) volatile {
|
||||
this->value = value;
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user