EightBit/src/Chip.cpp
Adrian Conlon 754fc8e6a3 Refactor the processor class to give us a "Chip" class that gives up pin levels and power.
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
2018-09-23 13:10:58 +01:00

6 lines
90 B
C++

#include "stdafx.h"
#include "Chip.h"
void EightBit::Chip::powerOn() {
raise(POWER());
}