1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-30 22:29:56 +00:00
CLK/Machines/Enterprise/Dave.cpp

17 lines
274 B
C++
Raw Normal View History

2021-06-22 23:33:41 +00:00
//
// Dave.cpp
// Clock Signal
//
// Created by Thomas Harte on 22/06/2021.
// Copyright © 2021 Thomas Harte. All rights reserved.
//
#include "Dave.hpp"
using namespace Enterprise;
void Dave::write(uint16_t address, uint8_t value) {
2021-06-23 00:50:03 +00:00
(void)address;
(void)value;
2021-06-22 23:33:41 +00:00
}