// // 6526Implementation.hpp // Clock Signal // // Created by Thomas Harte on 18/07/2021. // Copyright © 2021 Thomas Harte. All rights reserved. // #ifndef _526Implementation_h #define _526Implementation_h namespace MOS { namespace MOS6526 { template void MOS6526::write(int address, uint8_t value) { } template uint8_t MOS6526::read(int address) { return 0xff; } } } #endif /* _526Implementation_h */