mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-03 08:05:40 +00:00
56 lines
1.1 KiB
C++
56 lines
1.1 KiB
C++
|
//
|
||
|
// Copper.hpp
|
||
|
// Clock Signal
|
||
|
//
|
||
|
// Created by Thomas Harte on 16/09/2021.
|
||
|
// Copyright © 2021 Thomas Harte. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#ifndef Copper_h
|
||
|
#define Copper_h
|
||
|
|
||
|
#include "DMADevice.hpp"
|
||
|
|
||
|
namespace Amiga {
|
||
|
|
||
|
class Copper: public DMADevice<2> {
|
||
|
public:
|
||
|
using DMADevice<2>::DMADevice;
|
||
|
|
||
|
/// Offers a DMA slot to the Copper, specifying the current beam position.
|
||
|
///
|
||
|
/// @returns @c true if the slot was used; @c false otherwise.
|
||
|
bool advance(uint16_t position);
|
||
|
|
||
|
/// Forces a reload of address @c id (i.e. 0 or 1) and restarts the Copper.
|
||
|
template <int id> void reload() {
|
||
|
address_ = pointer_[id];
|
||
|
state_ = State::FetchFirstWord;
|
||
|
}
|
||
|
|
||
|
/// Sets the Copper control word.
|
||
|
void set_control(uint16_t c) {
|
||
|
control_ = c;
|
||
|
}
|
||
|
|
||
|
/// Forces the Copper into the stopped state.
|
||
|
void stop() {
|
||
|
state_ = State::Stopped;
|
||
|
}
|
||
|
|
||
|
private:
|
||
|
uint32_t address_ = 0;
|
||
|
uint16_t control_ = 0;
|
||
|
|
||
|
enum class State {
|
||
|
FetchFirstWord, FetchSecondWord, Waiting, Stopped,
|
||
|
} state_ = State::Stopped;
|
||
|
bool skip_next_ = false;
|
||
|
uint16_t instruction_[2]{};
|
||
|
uint16_t position_mask_ = 0xffff;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif /* Copper_h */
|