1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-17 13:29:02 +00:00
CLK/Components/6850/6850.hpp

30 lines
478 B
C++
Raw Normal View History

2019-10-11 00:54:29 +00:00
//
// 6850.hpp
// Clock Signal
//
// Created by Thomas Harte on 10/10/2019.
// Copyright © 2019 Thomas Harte. All rights reserved.
//
#ifndef Motorola_ACIA_6850_hpp
#define Motorola_ACIA_6850_hpp
#include <cstdint>
#include "../../ClockReceiver/ClockReceiver.hpp"
namespace Motorola {
namespace ACIA {
class ACIA {
public:
uint8_t read(int address);
void write(int address, uint8_t value);
void run_for(HalfCycles);
};
}
}
#endif /* Motorola_ACIA_6850_hpp */