EightBit/inc/ClockedChip.h

36 lines
629 B
C++

#pragma once
#include "Chip.h"
#include "EventArgs.h"
#include "Signal.h"
namespace EightBit {
class ClockedChip : public Chip {
public:
ClockedChip(const ClockedChip& rhs) noexcept;
bool operator==(const ClockedChip& rhs) const noexcept;
Signal<EventArgs> Ticked;
[[nodiscard]] constexpr auto cycles() const noexcept { return m_cycles; }
void tick() {
++m_cycles;
Ticked.fire();
}
void tick(int extra) {
for (int i = 0; i < extra; ++i)
tick();
}
protected:
ClockedChip() noexcept = default;
constexpr void resetCycles() noexcept { m_cycles = 0; }
private:
int m_cycles = 0;
};
}