#include <or.h>
Inheritance diagram for lcs::Or< width >:
width
denotes the number of lines in the input data bus. In other words, the template parameter width
denotes the number of inputs to the OR gate. Hence, one can instantiate an N-input OR gate by setting the template parameter value to N.
Public Member Functions | |
Or (const Bus< 1 > &output, const InputBus< width > &in1) | |
virtual | ~Or () |
virtual void | propogate (void) |
The only meaningfull constructor for the class. A default constructor is not explicitly provided. Moreover, the one synthesized by the compiler is practically useless.
output | The single line output bus of the gate. | |
input | The multiline input bus to the gate. | |
width | The number of lines in the input bus. |
void lcs::Or< width >::propogate | ( | void | ) | [virtual] |
Propogates the input data line states to the output. Here, an OR operation is performed on the line states of the data lines of the input bus, and the result is propogated to the single line output bus.
Reimplemented from lcs::Module.