parent
8c7a26eb04
commit
41bfb2cdd7
@ -0,0 +1,15 @@
|
||||
#ifndef __PINPC_HPP__
|
||||
#define __PINPC_HPP__
|
||||
|
||||
#include <iostream>
|
||||
|
||||
struct Pin_PC : Pin<Pin_PC>
|
||||
{
|
||||
void writeImpl(bool logic)
|
||||
{
|
||||
std::cout << "PC pin set to " << logic << std::endl;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
#endif // __PINPC_HPP__
|
Loading…
Reference in new issue