Start the process of audio frame generation.

Signed-off-by: Adrian.Conlon <adrian.conlon@arup.com>
This commit is contained in:
Adrian.Conlon 2017-09-22 09:30:27 +01:00
parent a4cdc2bcb5
commit 1a1d5ea807

View File

@ -343,6 +343,7 @@ int EightBit::GameBoy::LR35902::runRasterLine() {
if ((m_bus.peekRegister(Bus::STAT) & Bit6) && (m_bus.peekRegister(Bus::LYC) == m_bus.peekRegister(Bus::LY)))
m_bus.triggerInterrupt(Bus::Interrupts::DisplayControlStatus);
}
m_bus.audio().stepFrame(count);
return count;
}