diff options
author | UnavailableDev <69792062+UnavailableDev@users.noreply.github.com> | 2024-06-12 16:51:32 +0200 |
---|---|---|
committer | UnavailableDev <69792062+UnavailableDev@users.noreply.github.com> | 2024-06-12 16:51:32 +0200 |
commit | d1e381e301bb55432997ff355b5c938e76cd4f20 (patch) | |
tree | d793f4cd04aeb610fd05671785079b3fc8ef24f7 /NodeOutput.cpp | |
parent | 8d64376c70e4f291f1a8fb24488cb713216eb1f9 (diff) |
New OrGate WHOOO
Diffstat (limited to 'NodeOutput.cpp')
-rw-r--r-- | NodeOutput.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/NodeOutput.cpp b/NodeOutput.cpp index 00ca006..5138805 100644 --- a/NodeOutput.cpp +++ b/NodeOutput.cpp @@ -11,11 +11,11 @@ void NodeOutput::sim() { if (this->inputs.size() == 0) throw CircuitException("No inputs on probe"); - std::cout << this->inputs[0]->getLevel() << "foo" << std::endl; + std::cout << "Probe signal level: " << this->inputs[0]->getLevel() << std::endl; } NodeOutput::NodeOutput(const NodeOutput * prototype) : Node() { } NodeOutput * NodeOutput::clone() const { return new NodeOutput(this); -}
\ No newline at end of file +} |