2019-01-10 22:23:51 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "Chip.h"
|
|
|
|
#include "EventArgs.h"
|
|
|
|
#include "Signal.h"
|
|
|
|
|
|
|
|
namespace EightBit {
|
|
|
|
class ClockedChip : public Chip {
|
|
|
|
public:
|
2021-07-18 13:28:40 +00:00
|
|
|
virtual ~ClockedChip() noexcept {};
|
2019-01-10 22:23:51 +00:00
|
|
|
|
|
|
|
Signal<EventArgs> Ticked;
|
|
|
|
|
2021-07-18 13:28:40 +00:00
|
|
|
[[nodiscard]] constexpr auto cycles() const noexcept { return m_cycles; }
|
2019-01-10 22:23:51 +00:00
|
|
|
|
2021-01-09 08:41:48 +00:00
|
|
|
void tick(int extra);
|
|
|
|
void tick();
|
|
|
|
|
2019-01-10 22:23:51 +00:00
|
|
|
protected:
|
2021-07-18 13:28:40 +00:00
|
|
|
ClockedChip() noexcept = default;
|
|
|
|
|
2021-01-09 08:41:48 +00:00
|
|
|
void resetCycles() noexcept;
|
2019-01-10 22:23:51 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
int m_cycles = 0;
|
|
|
|
};
|
|
|
|
}
|