mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-19 23:32:28 +00:00
93 lines
2.2 KiB
C++
93 lines
2.2 KiB
C++
//
|
|
// 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"
|
|
#include "../../ClockReceiver/ClockingHintSource.hpp"
|
|
#include "../SerialPort/SerialPort.hpp"
|
|
|
|
namespace Motorola {
|
|
namespace ACIA {
|
|
|
|
class ACIA: public ClockingHint::Source {
|
|
public:
|
|
static constexpr const HalfCycles SameAsTransmit = HalfCycles(0);
|
|
|
|
/*!
|
|
Constructs a new instance of ACIA which will receive a transmission clock at a rate of
|
|
@c transmit_clock_rate, and a receive clock at a rate of @c receive_clock_rate.
|
|
*/
|
|
ACIA(HalfCycles transmit_clock_rate, HalfCycles receive_clock_rate = SameAsTransmit);
|
|
|
|
/*!
|
|
Reads from the ACIA.
|
|
|
|
Bit 0 of the address is used as the ACIA's register select line —
|
|
so even addresses select control/status registers, odd addresses
|
|
select transmit/receive data registers.
|
|
*/
|
|
uint8_t read(int address);
|
|
|
|
/*!
|
|
Writes to the ACIA.
|
|
|
|
Bit 0 of the address is used as the ACIA's register select line —
|
|
so even addresses select control/status registers, odd addresses
|
|
select transmit/receive data registers.
|
|
*/
|
|
void write(int address, uint8_t value);
|
|
|
|
/*!
|
|
Advances @c transmission_cycles in time, which should be
|
|
counted relative to the @c transmit_clock_rate.
|
|
*/
|
|
void run_for(HalfCycles transmission_cycles);
|
|
|
|
bool get_interrupt_line() const;
|
|
|
|
// Input lines.
|
|
Serial::Line receive;
|
|
Serial::Line clear_to_send;
|
|
Serial::Line data_carrier_detect;
|
|
|
|
// Output lines.
|
|
Serial::Line transmit;
|
|
Serial::Line request_to_send;
|
|
|
|
private:
|
|
int divider_ = 1;
|
|
enum class Parity {
|
|
Even, Odd, None
|
|
} parity_ = Parity::None;
|
|
int data_bits_ = 7, stop_bits_ = 2;
|
|
|
|
static const int NoValue = 0x100;
|
|
int next_transmission_ = NoValue;
|
|
int received_data_ = NoValue;
|
|
|
|
void consider_transmission();
|
|
|
|
bool receive_interrupt_enabled_ = false;
|
|
bool transmit_interrupt_enabled_ = false;
|
|
|
|
bool interrupt_request_ = false;
|
|
|
|
ClockingHint::Preference preferred_clocking() final;
|
|
|
|
HalfCycles transmit_clock_rate_;
|
|
HalfCycles receive_clock_rate_;
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif /* Motorola_ACIA_6850_hpp */
|