1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-29 00:29:34 +00:00
CLK/Machines/Enterprise/Dave.cpp
2021-06-22 20:50:03 -04:00

17 lines
274 B
C++

//
// 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) {
(void)address;
(void)value;
}