mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2025-08-09 16:24:56 +00:00
11 lines
186 B
C++
11 lines
186 B
C++
#include "stdafx.h"
|
|
#include "Chip.h"
|
|
|
|
void EightBit::Chip::powerOn() {
|
|
raise(POWER());
|
|
}
|
|
|
|
void EightBit::Chip::match(PinLevel& line, int value) {
|
|
value ? raise(line) : lower(line);
|
|
}
|