2017-04-23 19:18:11 -04:00
|
|
|
#include "XnorGate.h"
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
XnorGate::XnorGate(int d, Wire* wire1, Wire* wire2, Wire* wire3) {
|
|
|
|
delay = d;
|
|
|
|
in1 = wire1;
|
|
|
|
in2 = wire2;
|
|
|
|
out = wire3;
|
|
|
|
}
|
|
|
|
|
2017-04-23 19:46:37 -04:00
|
|
|
Event XnorGate::evaluate(int evTime) {
|
2017-04-23 19:18:11 -04:00
|
|
|
if (in1->getValue(evTime) != -1 && in2->getValue(evTime) != -1) {
|
|
|
|
if (in1->getValue(evTime) == in2->getValue(evTime)) {
|
2017-04-25 10:36:51 -04:00
|
|
|
return Event(1, evTime + delay, out);
|
2017-04-23 19:18:11 -04:00
|
|
|
}
|
|
|
|
else {
|
2017-04-25 10:36:51 -04:00
|
|
|
return Event(0, evTime + delay, out);
|
2017-04-23 19:18:11 -04:00
|
|
|
}
|
|
|
|
}
|
2017-04-25 10:10:07 -04:00
|
|
|
else {
|
2017-04-25 10:36:51 -04:00
|
|
|
return Event(-1, evTime + delay, out);
|
2017-04-25 10:10:07 -04:00
|
|
|
}
|
2017-04-23 19:18:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
int XnorGate::getDelay()
|
|
|
|
{
|
|
|
|
return delay;
|
|
|
|
}
|