From 22337474db6cc988ae6882a415aecff562e6b9ed Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Wed, 25 Oct 2017 19:16:05 -0400 Subject: [PATCH] Update TI83.cs --- BizHawk.Emulation.Cores/Calculator/TI83.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Cores/Calculator/TI83.cs b/BizHawk.Emulation.Cores/Calculator/TI83.cs index 09b0928449..cfe82f74eb 100644 --- a/BizHawk.Emulation.Cores/Calculator/TI83.cs +++ b/BizHawk.Emulation.Cores/Calculator/TI83.cs @@ -23,6 +23,7 @@ namespace BizHawk.Emulation.Cores.Calculators PutSettings((TI83Settings)settings ?? new TI83Settings()); CoreComm = comm; + _cpu.FetchMemory = ReadMemory; _cpu.ReadMemory = ReadMemory; _cpu.WriteMemory = WriteMemory; _cpu.ReadHardware = ReadHardware; @@ -511,4 +512,4 @@ namespace BizHawk.Emulation.Cores.Calculators _displayX = _displayY = 0; } } -} \ No newline at end of file +}