d204485153
Missing support for SGB2's timings and still needs a few tweaks and more testing
44 lines
No EOL
817 B
C++
44 lines
No EOL
817 B
C++
#pragma once
|
|
#include "stdafx.h"
|
|
#include "GbTypes.h"
|
|
#include "../Utilities/ISerializable.h"
|
|
#include "../Utilities/Serializer.h"
|
|
|
|
class GbApu;
|
|
|
|
class GbSquareChannel final : public ISerializable
|
|
{
|
|
private:
|
|
const uint8_t _dutySequences[4][8] = {
|
|
{ 0, 1, 1, 1, 1, 1, 1, 1 },
|
|
{ 0, 0, 1, 1, 1, 1, 1, 1 },
|
|
{ 0, 0, 0, 0, 1, 1, 1, 1 },
|
|
{ 0, 0, 0, 0, 0, 0, 1, 1 }
|
|
};
|
|
|
|
GbSquareState _state = {};
|
|
GbApu* _apu = nullptr;
|
|
|
|
public:
|
|
GbSquareChannel(GbApu* apu);
|
|
|
|
GbSquareState GetState();
|
|
|
|
bool Enabled();
|
|
void Disable();
|
|
|
|
void ClockSweepUnit();
|
|
uint16_t GetSweepTargetFrequency();
|
|
|
|
void ClockLengthCounter();
|
|
void ClockEnvelope();
|
|
|
|
uint8_t GetOutput();
|
|
|
|
void Exec(uint32_t clocksToRun);
|
|
|
|
uint8_t Read(uint16_t addr);
|
|
void Write(uint16_t addr, uint8_t value);
|
|
|
|
void Serialize(Serializer& s) override;
|
|
}; |