1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-10 12:29:01 +00:00
CLK/Components/5380/ncr5380.cpp

19 lines
301 B
C++
Raw Normal View History

//
// ncr5380.cpp
// Clock Signal
//
// Created by Thomas Harte on 10/08/2019.
// Copyright © 2019 Thomas Harte. All rights reserved.
//
#include "ncr5380.hpp"
using namespace NCR::NCR5380;
void NCR5380::write(int address, uint8_t value) {
}
uint8_t NCR5380::read(int address) {
return 0;
}