#ifndef __PINPC_HPP__ #define __PINPC_HPP__ #include struct Pin_PC : Pin { void writeImpl(bool logic) { std::cout << "PC pin set to " << logic << std::endl; } }; #endif // __PINPC_HPP__