diff options
author | 2015-06-13 10:42:53 -0300 | |
---|---|---|
committer | 2015-06-16 15:17:20 -0300 | |
commit | 9a27b57c07a23509f4f7fc3b93e3f5c2679e293c (patch) | |
tree | 7686f19cd4a8c1ddede96422b53ecb05c696ccb9 /src/emu/cpu/avr8/avr8.h | |
parent | e3fdd3f0335fc6ba632b792c448d941f2bd514e9 (diff) |
uzebox: adding sound emulation (It works but with terrible performance. Uzebox's DrMario song is recognizable even though the sound is choppy, full of noise).
When running with -wavwrite the resulting file plays nicely on a music player. The sound is much better, but still contains a high frequency noisy sort of hiss.
Diffstat (limited to 'src/emu/cpu/avr8/avr8.h')
-rw-r--r-- | src/emu/cpu/avr8/avr8.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/emu/cpu/avr8/avr8.h b/src/emu/cpu/avr8/avr8.h index 2384c585804..5708a571023 100644 --- a/src/emu/cpu/avr8/avr8.h +++ b/src/emu/cpu/avr8/avr8.h @@ -162,6 +162,7 @@ protected: UINT8 m_timer_increment[6]; UINT16 m_timer_prescale[6]; UINT16 m_timer_prescale_count[6]; + bool m_ocr2_not_reached_yet; // SPI bool m_spi_active; |