From eb03f28e995396097723e293d70b53c46c10c65f Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Sat, 15 Feb 2020 21:38:57 -0500 Subject: [PATCH] O2Hawk: fix noise bit --- Assets/gamedb/gamedb_Odyssey2.txt | 2 ++ .../Consoles/Magnavox/Odyssey2/PPU.cs | 35 ++++++++++--------- 2 files changed, 20 insertions(+), 17 deletions(-) diff --git a/Assets/gamedb/gamedb_Odyssey2.txt b/Assets/gamedb/gamedb_Odyssey2.txt index 800c254aa7..9cde83945d 100644 --- a/Assets/gamedb/gamedb_Odyssey2.txt +++ b/Assets/gamedb/gamedb_Odyssey2.txt @@ -9,6 +9,8 @@ SHA1:0D6B44E2445DBB3BF70C4E05F222822845C29762 Boob O2 SHA1:DE888B7AA2716C3134CFF812A4E07E86B2479537 Shoot the B O2 SHA1:85A44A99B254D92A7433EE46E4CAA91483D7FEA2 Go Sub 2 O2 SHA1:2B34EF0E1A8C0371F00A33D6950E0807F3CB886E Happy Emu O2 +SHA1:364504FFCE1108BCF09A5CC784F7EA2CF141F7B8 Football O2 + diff --git a/BizHawk.Emulation.Cores/Consoles/Magnavox/Odyssey2/PPU.cs b/BizHawk.Emulation.Cores/Consoles/Magnavox/Odyssey2/PPU.cs index 898e1051e2..89897bf4dc 100644 --- a/BizHawk.Emulation.Cores/Consoles/Magnavox/Odyssey2/PPU.cs +++ b/BizHawk.Emulation.Cores/Consoles/Magnavox/Odyssey2/PPU.cs @@ -626,7 +626,7 @@ namespace BizHawk.Emulation.Cores.Consoles.O2Hawk public uint master_audio_clock; - public int tick_cnt, output_bit; + public int tick_cnt, output_bit, shift_cnt; public int latched_sample_C; @@ -673,27 +673,25 @@ namespace BizHawk.Emulation.Cores.Consoles.O2Hawk shift_2 = (byte)((shift_2 >> 1) | ((shift_1 & 1) << 7)); shift_1 = (byte)((shift_1 >> 1) | ((shift_0 & 1) << 7)); - - if (aud_ctrl.Bit(6)) - { - shift_0 = (byte)((shift_0 >> 1) | (output_bit << 7)); - } - else - { - shift_0 = (byte)(shift_0 >> 1); - } + shift_0 = (byte)(shift_0 >> 1); if (aud_ctrl.Bit(4)) { - if (shift_2.Bit(7) == output_bit.Bit(0)) + shift_0 |= (byte)(((output_bit.Bit(0) ^ shift_2.Bit(7)) ^ shift_2.Bit(4)) ? 0x80 : 0); + } + + shift_cnt++; + + if (shift_cnt == 24) + { + if (aud_ctrl.Bit(6) && !aud_ctrl.Bit(4)) { - shift_2 &= 0x7F; + shift_0 = shift_reg_0; + shift_1 = shift_reg_1; + shift_2 = shift_reg_2; } - else - { - shift_2 = (byte)(shift_2 | 0x80); - } - + + shift_cnt = 0; } } @@ -716,6 +714,8 @@ namespace BizHawk.Emulation.Cores.Consoles.O2Hawk sample = 0; + shift_cnt = 0; + _blip_C.SetRates(1792000, 44100); } @@ -734,6 +734,7 @@ namespace BizHawk.Emulation.Cores.Consoles.O2Hawk ser.Sync(nameof(shift_reg_1), ref shift_reg_1); ser.Sync(nameof(shift_reg_2), ref shift_reg_2); ser.Sync(nameof(tick_cnt), ref tick_cnt); + ser.Sync(nameof(shift_cnt), ref shift_cnt); ser.Sync(nameof(output_bit), ref output_bit); }