From 211e65dbf5c16049b1a0c681093f34f33caad9b7 Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Tue, 1 Oct 2019 21:03:30 -0400 Subject: [PATCH] GBHawk: IR comm working --- .../Nintendo/GBHawk/GBHawk.IStatable.cs | 1 + .../Consoles/Nintendo/GBHawk/GBHawk.cs | 1 + .../Consoles/Nintendo/GBHawk/HW_Registers.cs | 7 +- .../GBHawkLink/GBHawkLink.IEmulator.cs | 27 ++++++- .../GBHawkLink3x/GBHawkLink3x.IEmulator.cs | 81 +++++++++++++++++-- 5 files changed, 106 insertions(+), 11 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.IStatable.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.IStatable.cs index d7ca270d54..2e9128ecba 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.IStatable.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.IStatable.cs @@ -95,6 +95,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk ser.Sync(nameof(IR_signal), ref IR_signal); ser.Sync(nameof(IR_receive), ref IR_receive); ser.Sync(nameof(IR_self), ref IR_self); + ser.Sync(nameof(IR_write), ref IR_write); ser.Sync(nameof(undoc_6C), ref undoc_6C); ser.Sync(nameof(undoc_72), ref undoc_72); diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.cs index d8218377cc..5a14b9ea93 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.cs @@ -55,6 +55,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk public bool speed_switch; public bool HDMA_transfer; // stalls CPU when in progress public byte IR_reg, IR_mask, IR_signal, IR_receive, IR_self; + public int IR_write; // several undocumented GBC Registers public byte undoc_6C, undoc_72, undoc_73, undoc_74, undoc_75, undoc_76, undoc_77; diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/HW_Registers.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/HW_Registers.cs index 3df28da035..41d6687b4a 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/HW_Registers.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/HW_Registers.cs @@ -149,13 +149,12 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk // can receive data if ((IR_reg & 0xC0) == 0xC0) { - ret = (byte)(IR_reg | (IR_self | IR_receive | IR_mask)); + ret = IR_reg; } else { ret = (byte)(IR_reg | 2); } - } else { @@ -432,7 +431,9 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk if ((IR_reg & 0x1) == 0x1) { IR_signal = (byte)(0 | IR_mask); } else { IR_signal = 2; } // receive own signal if IR on and receive on - if ((IR_reg & 0xC1) == 0xC1) { IR_self = 0; } else { IR_self = 2; } + if ((IR_reg & 0xC1) == 0xC1) { IR_self = (byte)(0 | IR_mask); } else { IR_self = 2; } + + IR_write = 8; } break; diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawkLink/GBHawkLink.IEmulator.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawkLink/GBHawkLink.IEmulator.cs index cae407dcda..b25bc3b3f7 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawkLink/GBHawkLink.IEmulator.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawkLink/GBHawkLink.IEmulator.cs @@ -141,8 +141,31 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawkLink } // do IR transfer - L.IR_receive = R.IR_signal; - R.IR_receive = L.IR_signal; + if (L.IR_write > 0) + { + L.IR_write--; + if (L.IR_write ==0) + { + R.IR_receive = L.IR_signal; + if ((R.IR_self & R.IR_receive) == 2) { R.IR_reg |= 2; } + else { R.IR_reg &= 0xFD;} + if ((L.IR_self & L.IR_receive) == 2) { L.IR_reg |= 2; } + else { L.IR_reg &= 0xFD; } + } + } + + if (R.IR_write > 0) + { + R.IR_write--; + if (R.IR_write == 0) + { + L.IR_receive = R.IR_signal; + if ((L.IR_self & L.IR_receive) == 2) { L.IR_reg |= 2; } + else { L.IR_reg &= 0xFD; } + if ((R.IR_self & R.IR_receive) == 2) { R.IR_reg |= 2; } + else { R.IR_reg &= 0xFD; } + } + } } // if we hit a frame boundary, update video diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawkLink3x/GBHawkLink3x.IEmulator.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawkLink3x/GBHawkLink3x.IEmulator.cs index 23aa7d1111..b0ccc1fdda 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawkLink3x/GBHawkLink3x.IEmulator.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawkLink3x/GBHawkLink3x.IEmulator.cs @@ -176,8 +176,31 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawkLink3x } // do IR transfer - L.IR_receive = C.IR_signal; - C.IR_receive = L.IR_signal; + if (L.IR_write > 0) + { + L.IR_write--; + if (L.IR_write == 0) + { + C.IR_receive = L.IR_signal; + if ((C.IR_self & C.IR_receive) == 2) { C.IR_reg |= 2; } + else { C.IR_reg &= 0xFD; } + if ((L.IR_self & L.IR_receive) == 2) { L.IR_reg |= 2; } + else { L.IR_reg &= 0xFD; } + } + } + + if (C.IR_write > 0) + { + C.IR_write--; + if (C.IR_write == 0) + { + L.IR_receive = C.IR_signal; + if ((L.IR_self & L.IR_receive) == 2) { L.IR_reg |= 2; } + else { L.IR_reg &= 0xFD; } + if ((C.IR_self & C.IR_receive) == 2) { C.IR_reg |= 2; } + else { C.IR_reg &= 0xFD; } + } + } } else if (_cableconnected_CR) { @@ -220,8 +243,31 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawkLink3x } // do IR transfer - C.IR_receive = R.IR_signal; - R.IR_receive = C.IR_signal; + if (C.IR_write > 0) + { + C.IR_write--; + if (C.IR_write == 0) + { + R.IR_receive = C.IR_signal; + if ((R.IR_self & R.IR_receive) == 2) { R.IR_reg |= 2; } + else { R.IR_reg &= 0xFD; } + if ((C.IR_self & C.IR_receive) == 2) { C.IR_reg |= 2; } + else { C.IR_reg &= 0xFD; } + } + } + + if (R.IR_write > 0) + { + R.IR_write--; + if (R.IR_write == 0) + { + C.IR_receive = R.IR_signal; + if ((C.IR_self & C.IR_receive) == 2) { C.IR_reg |= 2; } + else { C.IR_reg &= 0xFD; } + if ((R.IR_self & R.IR_receive) == 2) { R.IR_reg |= 2; } + else { R.IR_reg &= 0xFD; } + } + } } else if (_cableconnected_RL) { @@ -264,8 +310,31 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawkLink3x } // do IR transfer - R.IR_receive = L.IR_signal; - L.IR_receive = R.IR_signal; + if (R.IR_write > 0) + { + R.IR_write--; + if (R.IR_write == 0) + { + L.IR_receive = R.IR_signal; + if ((L.IR_self & L.IR_receive) == 2) { L.IR_reg |= 2; } + else { L.IR_reg &= 0xFD; } + if ((R.IR_self & R.IR_receive) == 2) { R.IR_reg |= 2; } + else { R.IR_reg &= 0xFD; } + } + } + + if (L.IR_write > 0) + { + L.IR_write--; + if (L.IR_write == 0) + { + R.IR_receive = L.IR_signal; + if ((R.IR_self & R.IR_receive) == 2) { R.IR_reg |= 2; } + else { R.IR_reg &= 0xFD; } + if ((L.IR_self & L.IR_receive) == 2) { L.IR_reg |= 2; } + else { L.IR_reg &= 0xFD; } + } + } }