1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-09 06:29:33 +00:00
CLK/Components/6850/6850.cpp

22 lines
330 B
C++
Raw Normal View History

2019-10-11 00:54:29 +00:00
//
// 6850.cpp
// Clock Signal
//
// Created by Thomas Harte on 10/10/2019.
// Copyright © 2019 Thomas Harte. All rights reserved.
//
#include "6850.hpp"
using namespace Motorola::ACIA;
uint8_t ACIA::read(int address) {
return 0xff;
}
void ACIA::write(int address, uint8_t value) {
}
void ACIA::run_for(HalfCycles) {
}