mirror of
https://github.com/zoriya/ComSquare.git
synced 2026-06-04 18:46:11 +00:00
Adding channels and sound buffer to DSP
This commit is contained in:
+2
-2
@@ -106,9 +106,9 @@ namespace ComSquare::APU
|
||||
class APU : public Memory::IMemory {
|
||||
private:
|
||||
//! @brief All the registers of the APU CPU
|
||||
Registers _registers;
|
||||
Registers _registers{};
|
||||
//! @brief Internal registers of the CPU (accessible from the bus via addr $4200 to $421F).
|
||||
InternalRegisters _internalRegisters;
|
||||
InternalRegisters _internalRegisters{};
|
||||
|
||||
//! @brief The DSP component used to produce sound
|
||||
std::shared_ptr<DSP::DSP> _dsp;
|
||||
|
||||
Reference in New Issue
Block a user