#include <and.h>
Inheritance diagram for lcs::And< 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 AND gate. Hence, one can instantiate an N-input AND gate by setting the template parameter value to N.
Public Member Functions | |
And (const Bus< 1 > &output, const InputBus< width > &in1) | |
virtual | ~And () |
virtual void | propogate (void) |
lcs::And< width >::And | ( | const Bus< 1 > & | output, | |
const InputBus< width > & | in1 | |||
) |
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::And< width >::propogate | ( | void | ) | [virtual] |
Propogates the input data line states to the output. Here, an AND 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.