mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-26 08:49:37 +00:00
17 lines
274 B
C++
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;
|
|
}
|