diff options
author | UnavailableDev <69792062+UnavailableDev@users.noreply.github.com> | 2024-06-12 20:06:48 +0200 |
---|---|---|
committer | UnavailableDev <69792062+UnavailableDev@users.noreply.github.com> | 2024-06-12 20:06:48 +0200 |
commit | f1de485461b4cbb5dda4705323b416abec39b574 (patch) | |
tree | d8754423e16e87b299fdd747f7490d3e1f756474 /GateNand.h | |
parent | 50d3fb09278d57b5a35e15074cc025a62476c5a7 (diff) | |
parent | 26a7c785113e4e8343685b33d8ac4aa2023380f3 (diff) |
Merge remote-tracking branch 'origin/node'
Diffstat (limited to 'GateNand.h')
-rw-r--r-- | GateNand.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/GateNand.h b/GateNand.h new file mode 100644 index 0000000..7158040 --- /dev/null +++ b/GateNand.h @@ -0,0 +1,15 @@ +#pragma once + +// #include "Node.h" +#include "GateAnd.h" + +class GateNand : public GateAnd { +private: + SignalLevel level(); + + // GateNand(const char * type); + using GateAnd::GateAnd; + constexpr static const char * type = "nand"; + static GateNand instance; +}; + |