2017-08-29 13:18:28 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
using BizHawk.Common.BufferExtensions;
|
|
|
|
|
using BizHawk.Emulation.Common;
|
|
|
|
|
using BizHawk.Emulation.Common.Components.LR35902;
|
|
|
|
|
using BizHawk.Common.NumberExtensions;
|
|
|
|
|
|
2017-11-26 02:16:14 +00:00
|
|
|
|
using BizHawk.Emulation.Cores.Consoles.Nintendo.Gameboy;
|
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
|
2017-08-29 13:18:28 +00:00
|
|
|
|
namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
|
|
|
|
|
{
|
|
|
|
|
[Core(
|
|
|
|
|
"GBHawk",
|
|
|
|
|
"",
|
|
|
|
|
isPorted: false,
|
2017-11-19 20:16:15 +00:00
|
|
|
|
isReleased: false)]
|
|
|
|
|
[ServiceNotApplicable(typeof(IDriveLight))]
|
2017-11-26 02:16:14 +00:00
|
|
|
|
public partial class GBHawk : IEmulator, ISaveRam, IDebuggable, IStatable, IInputPollable, IRegionable, IGameboyCommon,
|
2017-08-29 13:18:28 +00:00
|
|
|
|
ISettable<GBHawk.GBSettings, GBHawk.GBSyncSettings>
|
|
|
|
|
{
|
|
|
|
|
// this register controls whether or not the GB BIOS is mapped into memory
|
|
|
|
|
public byte GB_bios_register;
|
|
|
|
|
|
|
|
|
|
public byte input_register;
|
|
|
|
|
|
|
|
|
|
// The unused bits in this register are still read/writable
|
|
|
|
|
public byte REG_FFFF;
|
|
|
|
|
// The unused bits in this register (interrupt flags) are always set
|
|
|
|
|
public byte REG_FF0F = 0xE0;
|
|
|
|
|
public bool enable_VBL;
|
|
|
|
|
public bool enable_STAT;
|
|
|
|
|
public bool enable_TIMO;
|
|
|
|
|
public bool enable_SER;
|
|
|
|
|
public bool enable_PRS;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// memory domains
|
|
|
|
|
public byte[] RAM = new byte[0x2000];
|
|
|
|
|
public byte[] ZP_RAM = new byte[0x80];
|
|
|
|
|
public byte[] CHR_RAM = new byte[0x1800];
|
|
|
|
|
public byte[] BG_map_1 = new byte[0x400];
|
|
|
|
|
public byte[] BG_map_2 = new byte[0x400];
|
|
|
|
|
public byte[] OAM = new byte[0xA0];
|
|
|
|
|
|
|
|
|
|
public readonly byte[] _rom;
|
|
|
|
|
public readonly byte[] _bios;
|
|
|
|
|
public readonly byte[] _sram = new byte[2048];
|
|
|
|
|
public readonly byte[] header = new byte[0x50];
|
|
|
|
|
|
|
|
|
|
public byte[] cart_RAM;
|
|
|
|
|
|
|
|
|
|
private int _frame = 0;
|
|
|
|
|
|
2017-11-24 20:44:29 +00:00
|
|
|
|
public bool Use_RTC;
|
|
|
|
|
|
2017-08-29 13:18:28 +00:00
|
|
|
|
public MapperBase mapper;
|
|
|
|
|
|
|
|
|
|
private readonly ITraceable _tracer;
|
|
|
|
|
|
|
|
|
|
public LR35902 cpu;
|
|
|
|
|
public PPU ppu;
|
|
|
|
|
public Timer timer;
|
|
|
|
|
public Audio audio;
|
2017-11-22 01:22:56 +00:00
|
|
|
|
public SerialPort serialport;
|
2017-08-29 13:18:28 +00:00
|
|
|
|
|
|
|
|
|
[CoreConstructor("GB")]
|
|
|
|
|
public GBHawk(CoreComm comm, GameInfo game, byte[] rom, /*string gameDbFn,*/ object settings, object syncSettings)
|
|
|
|
|
{
|
|
|
|
|
var ser = new BasicServiceProvider(this);
|
|
|
|
|
|
|
|
|
|
cpu = new LR35902
|
|
|
|
|
{
|
|
|
|
|
ReadMemory = ReadMemory,
|
|
|
|
|
WriteMemory = WriteMemory,
|
2017-11-23 02:38:56 +00:00
|
|
|
|
PeekMemory = PeekMemory,
|
2017-08-29 13:18:28 +00:00
|
|
|
|
DummyReadMemory = ReadMemory,
|
|
|
|
|
OnExecFetch = ExecFetch
|
|
|
|
|
};
|
|
|
|
|
ppu = new PPU();
|
|
|
|
|
timer = new Timer();
|
|
|
|
|
audio = new Audio();
|
2017-11-22 01:22:56 +00:00
|
|
|
|
serialport = new SerialPort();
|
2017-08-29 13:18:28 +00:00
|
|
|
|
|
|
|
|
|
CoreComm = comm;
|
|
|
|
|
|
|
|
|
|
_settings = (GBSettings)settings ?? new GBSettings();
|
|
|
|
|
_syncSettings = (GBSyncSettings)syncSettings ?? new GBSyncSettings();
|
|
|
|
|
_controllerDeck = new GBHawkControllerDeck(_syncSettings.Port1);
|
|
|
|
|
|
2018-01-17 01:00:42 +00:00
|
|
|
|
byte[] Bios = comm.CoreFileProvider.GetFirmware("GB", "World", true, "BIOS Not Found, Cannot Load");
|
2017-11-19 20:16:15 +00:00
|
|
|
|
|
|
|
|
|
if (Bios == null)
|
|
|
|
|
{
|
|
|
|
|
throw new MissingFirmwareException("Missing Gamboy Bios");
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-29 13:18:28 +00:00
|
|
|
|
_bios = Bios;
|
|
|
|
|
|
|
|
|
|
Buffer.BlockCopy(rom, 0x100, header, 0, 0x50);
|
|
|
|
|
|
|
|
|
|
string hash_md5 = null;
|
|
|
|
|
hash_md5 = "md5:" + rom.HashMD5(0, rom.Length);
|
|
|
|
|
Console.WriteLine(hash_md5);
|
|
|
|
|
|
|
|
|
|
_rom = rom;
|
|
|
|
|
Setup_Mapper();
|
|
|
|
|
|
|
|
|
|
_frameHz = 60;
|
|
|
|
|
|
|
|
|
|
timer.Core = this;
|
|
|
|
|
audio.Core = this;
|
|
|
|
|
ppu.Core = this;
|
2017-11-22 01:22:56 +00:00
|
|
|
|
serialport.Core = this;
|
2017-08-29 13:18:28 +00:00
|
|
|
|
|
|
|
|
|
ser.Register<IVideoProvider>(this);
|
|
|
|
|
ser.Register<ISoundProvider>(audio);
|
|
|
|
|
ServiceProvider = ser;
|
|
|
|
|
|
2017-11-19 20:16:15 +00:00
|
|
|
|
_settings = (GBSettings)settings ?? new GBSettings();
|
|
|
|
|
_syncSettings = (GBSyncSettings)syncSettings ?? new GBSyncSettings();
|
|
|
|
|
|
2017-08-29 13:18:28 +00:00
|
|
|
|
_tracer = new TraceBuffer { Header = cpu.TraceHeader };
|
|
|
|
|
ser.Register<ITraceable>(_tracer);
|
|
|
|
|
|
|
|
|
|
SetupMemoryDomains();
|
2017-11-26 02:16:14 +00:00
|
|
|
|
HardReset();
|
|
|
|
|
|
|
|
|
|
iptr0 = Marshal.AllocHGlobal(CHR_RAM.Length + BG_map_1.Length + BG_map_2.Length + 1);
|
|
|
|
|
iptr1 = Marshal.AllocHGlobal(OAM.Length + 1);
|
2017-11-27 20:13:42 +00:00
|
|
|
|
iptr2 = Marshal.AllocHGlobal(color_palette.Length * 2 * 8 + 1);
|
|
|
|
|
iptr3 = Marshal.AllocHGlobal(color_palette.Length * 8 + 1);
|
2017-11-26 02:16:14 +00:00
|
|
|
|
|
|
|
|
|
_scanlineCallback = null;
|
2017-08-29 13:18:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-11-26 02:16:14 +00:00
|
|
|
|
#region GPUViewer
|
|
|
|
|
|
|
|
|
|
public bool IsCGBMode() => false;
|
|
|
|
|
|
|
|
|
|
public IntPtr iptr0 = IntPtr.Zero;
|
|
|
|
|
public IntPtr iptr1 = IntPtr.Zero;
|
|
|
|
|
public IntPtr iptr2 = IntPtr.Zero;
|
|
|
|
|
public IntPtr iptr3 = IntPtr.Zero;
|
|
|
|
|
|
|
|
|
|
private GPUMemoryAreas _gpuMemory
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
byte[] temp = new byte[CHR_RAM.Length + BG_map_1.Length + BG_map_2.Length];
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < CHR_RAM.Length; i++)
|
|
|
|
|
{
|
|
|
|
|
temp[i] = CHR_RAM[i];
|
|
|
|
|
}
|
|
|
|
|
for (int i = 0; i < BG_map_1.Length; i++)
|
|
|
|
|
{
|
|
|
|
|
temp[CHR_RAM.Length + i] = BG_map_1[i];
|
|
|
|
|
}
|
|
|
|
|
for (int i = 0; i < BG_map_2.Length; i++)
|
|
|
|
|
{
|
|
|
|
|
temp[CHR_RAM.Length + BG_map_1.Length + i] = BG_map_2[i];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Marshal.Copy(temp, 0, iptr0, temp.Length);
|
|
|
|
|
Marshal.Copy(OAM, 0, iptr1, OAM.Length);
|
|
|
|
|
|
2017-11-26 02:55:37 +00:00
|
|
|
|
int[] cp2 = new int[8];
|
|
|
|
|
for (int i = 0; i < 4; i++)
|
|
|
|
|
{
|
|
|
|
|
cp2[i] = (int)color_palette[(ppu.obj_pal_0 >> (i * 2)) & 3];
|
|
|
|
|
cp2[i + 4] = (int)color_palette[(ppu.obj_pal_1 >> (i * 2)) & 3];
|
|
|
|
|
}
|
|
|
|
|
Marshal.Copy(cp2, 0, iptr2, cp2.Length);
|
|
|
|
|
|
2017-11-26 02:16:14 +00:00
|
|
|
|
int[] cp = new int[4];
|
|
|
|
|
for (int i = 0; i < 4; i++)
|
|
|
|
|
{
|
2017-11-26 02:55:37 +00:00
|
|
|
|
cp[i] = (int)color_palette[(ppu.BGP >> (i * 2)) & 3];
|
2017-11-26 02:16:14 +00:00
|
|
|
|
}
|
2017-11-26 02:55:37 +00:00
|
|
|
|
Marshal.Copy(cp, 0, iptr3, cp.Length);
|
2017-11-26 02:16:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return new GPUMemoryAreas(iptr0, iptr1, iptr2, iptr3);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public GPUMemoryAreas GetGPU() => _gpuMemory;
|
|
|
|
|
|
|
|
|
|
public ScanlineCallback _scanlineCallback;
|
|
|
|
|
public int _scanlineCallbackLine = 0;
|
|
|
|
|
|
|
|
|
|
public void SetScanlineCallback(ScanlineCallback callback, int line)
|
|
|
|
|
{
|
|
|
|
|
_scanlineCallback = callback;
|
|
|
|
|
_scanlineCallbackLine = line;
|
|
|
|
|
|
|
|
|
|
if (line == -2)
|
|
|
|
|
{
|
|
|
|
|
GetGPU();
|
|
|
|
|
_scanlineCallback(ppu.LCDC);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private PrinterCallback _printerCallback = null;
|
|
|
|
|
|
|
|
|
|
public void SetPrinterCallback(PrinterCallback callback)
|
|
|
|
|
{
|
|
|
|
|
_printerCallback = null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2017-08-29 13:18:28 +00:00
|
|
|
|
public DisplayType Region => DisplayType.NTSC;
|
|
|
|
|
|
|
|
|
|
private readonly GBHawkControllerDeck _controllerDeck;
|
|
|
|
|
|
|
|
|
|
private void HardReset()
|
|
|
|
|
{
|
|
|
|
|
GB_bios_register = 0; // bios enable
|
|
|
|
|
in_vblank = true; // we start off in vblank since the LCD is off
|
|
|
|
|
in_vblank_old = true;
|
|
|
|
|
|
2017-11-24 15:28:38 +00:00
|
|
|
|
// Start off with RAM all 0xFF (the game 'X' (proto) expects this)
|
|
|
|
|
for (int i = 0; i < RAM.Length; i++)
|
|
|
|
|
{
|
|
|
|
|
RAM[i] = 0xFF;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-29 13:18:28 +00:00
|
|
|
|
Register_Reset();
|
|
|
|
|
timer.Reset();
|
|
|
|
|
ppu.Reset();
|
2017-11-14 22:52:35 +00:00
|
|
|
|
audio.Reset();
|
2017-11-22 01:22:56 +00:00
|
|
|
|
serialport.Reset();
|
2017-08-29 13:18:28 +00:00
|
|
|
|
|
2017-11-23 02:38:56 +00:00
|
|
|
|
cpu.SetCallbacks(ReadMemory, PeekMemory, PeekMemory, WriteMemory);
|
2017-08-29 13:18:28 +00:00
|
|
|
|
|
|
|
|
|
_vidbuffer = new int[VirtualWidth * VirtualHeight];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void ExecFetch(ushort addr)
|
|
|
|
|
{
|
2017-11-09 14:51:39 +00:00
|
|
|
|
MemoryCallbacks.CallExecutes(addr, "System Bus");
|
2017-08-29 13:18:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void Setup_Mapper()
|
|
|
|
|
{
|
|
|
|
|
// setup up mapper based on header entry
|
2017-11-14 19:43:58 +00:00
|
|
|
|
string mppr;
|
|
|
|
|
|
2017-08-29 13:18:28 +00:00
|
|
|
|
switch (header[0x47])
|
|
|
|
|
{
|
2017-11-14 19:43:58 +00:00
|
|
|
|
case 0x0: mapper = new MapperDefault(); mppr = "NROM"; break;
|
|
|
|
|
case 0x1: mapper = new MapperMBC1(); mppr = "MBC1"; break;
|
|
|
|
|
case 0x2: mapper = new MapperMBC1(); mppr = "MBC1"; break;
|
|
|
|
|
case 0x3: mapper = new MapperMBC1(); mppr = "MBC1"; break;
|
|
|
|
|
case 0x5: mapper = new MapperMBC2(); mppr = "MBC2"; break;
|
|
|
|
|
case 0x6: mapper = new MapperMBC2(); mppr = "MBC2"; break;
|
|
|
|
|
case 0x8: mapper = new MapperDefault(); mppr = "NROM"; break;
|
|
|
|
|
case 0x9: mapper = new MapperDefault(); mppr = "NROM"; break;
|
|
|
|
|
case 0xB: mapper = new MapperMMM01(); mppr = "MMM01"; break;
|
|
|
|
|
case 0xC: mapper = new MapperMMM01(); mppr = "MMM01"; break;
|
|
|
|
|
case 0xD: mapper = new MapperMMM01(); mppr = "MMM01"; break;
|
|
|
|
|
case 0xF: mapper = new MapperMBC3(); mppr = "MBC3"; break;
|
|
|
|
|
case 0x10: mapper = new MapperMBC3(); mppr = "MBC3"; break;
|
|
|
|
|
case 0x11: mapper = new MapperMBC3(); mppr = "MBC3"; break;
|
|
|
|
|
case 0x12: mapper = new MapperMBC3(); mppr = "MBC3"; break;
|
|
|
|
|
case 0x13: mapper = new MapperMBC3(); mppr = "MBC3"; break;
|
|
|
|
|
case 0x19: mapper = new MapperMBC5(); mppr = "MBC5"; break;
|
|
|
|
|
case 0x1A: mapper = new MapperMBC5(); mppr = "MBC5"; break;
|
|
|
|
|
case 0x1B: mapper = new MapperMBC5(); mppr = "MBC5"; break;
|
|
|
|
|
case 0x1C: mapper = new MapperMBC5(); mppr = "MBC5"; break;
|
|
|
|
|
case 0x1D: mapper = new MapperMBC5(); mppr = "MBC5"; break;
|
|
|
|
|
case 0x1E: mapper = new MapperMBC5(); mppr = "MBC5"; break;
|
|
|
|
|
case 0x20: mapper = new MapperMBC6(); mppr = "MBC6"; break;
|
|
|
|
|
case 0x22: mapper = new MapperMBC7(); mppr = "MBC7"; break;
|
|
|
|
|
case 0xFC: mapper = new MapperCamera(); mppr = "CAM"; break;
|
|
|
|
|
case 0xFD: mapper = new MapperTAMA5(); mppr = "TAMA5"; break;
|
|
|
|
|
case 0xFE: mapper = new MapperHuC3(); mppr = "HuC3"; break;
|
|
|
|
|
case 0xFF: mapper = new MapperHuC1(); mppr = "HuC1"; break;
|
2017-08-29 13:18:28 +00:00
|
|
|
|
|
2017-11-23 02:38:56 +00:00
|
|
|
|
// Bootleg mappers
|
|
|
|
|
// NOTE: Sachen mapper selection does not account for scrambling, so if another bootleg mapper
|
|
|
|
|
// identifies itself as 0x31, this will need to be modified
|
|
|
|
|
case 0x31: mapper = new MapperSachen2(); mppr = "Schn2"; break;
|
|
|
|
|
|
2017-08-29 13:18:28 +00:00
|
|
|
|
case 0x4:
|
|
|
|
|
case 0x7:
|
|
|
|
|
case 0xA:
|
|
|
|
|
case 0xE:
|
|
|
|
|
case 0x14:
|
|
|
|
|
case 0x15:
|
|
|
|
|
case 0x16:
|
|
|
|
|
case 0x17:
|
|
|
|
|
case 0x18:
|
|
|
|
|
case 0x1F:
|
|
|
|
|
case 0x21:
|
|
|
|
|
default:
|
|
|
|
|
// mapper not implemented
|
2017-11-23 02:38:56 +00:00
|
|
|
|
Console.WriteLine(header[0x47]);
|
2017-08-29 13:18:28 +00:00
|
|
|
|
throw new Exception("Mapper not implemented");
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-11 00:07:36 +00:00
|
|
|
|
// special case for multi cart mappers
|
|
|
|
|
if ((_rom.HashMD5(0,_rom.Length) == "97122B9B183AAB4079C8D36A4CE6E9C1") ||
|
|
|
|
|
(_rom.HashMD5(0, _rom.Length) == "9FB9C42CF52DCFDCFBAD5E61AE1B5777") ||
|
|
|
|
|
(_rom.HashMD5(0, _rom.Length) == "CF1F58AB72112716D3C615A553B2F481")
|
|
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
Console.WriteLine("Using Multi-Cart Mapper");
|
|
|
|
|
mapper = new MapperMBC1Multi();
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-29 13:18:28 +00:00
|
|
|
|
Console.Write("Mapper: ");
|
2017-11-14 19:43:58 +00:00
|
|
|
|
Console.WriteLine(mppr);
|
2017-08-29 13:18:28 +00:00
|
|
|
|
|
|
|
|
|
cart_RAM = null;
|
|
|
|
|
|
|
|
|
|
switch (header[0x49])
|
|
|
|
|
{
|
|
|
|
|
case 1:
|
|
|
|
|
cart_RAM = new byte[0x800];
|
|
|
|
|
break;
|
|
|
|
|
case 2:
|
|
|
|
|
cart_RAM = new byte[0x2000];
|
|
|
|
|
break;
|
|
|
|
|
case 3:
|
|
|
|
|
cart_RAM = new byte[0x8000];
|
|
|
|
|
break;
|
|
|
|
|
case 4:
|
|
|
|
|
cart_RAM = new byte[0x20000];
|
|
|
|
|
break;
|
|
|
|
|
case 5:
|
|
|
|
|
cart_RAM = new byte[0x10000];
|
|
|
|
|
break;
|
2017-11-14 19:43:58 +00:00
|
|
|
|
}
|
2017-08-29 13:18:28 +00:00
|
|
|
|
|
2017-11-23 02:38:56 +00:00
|
|
|
|
// Sachen maper not known to have RAM
|
|
|
|
|
if ((mppr == "Schn1") || (mppr == "Schn2"))
|
|
|
|
|
{
|
|
|
|
|
cart_RAM = null;
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-14 19:43:58 +00:00
|
|
|
|
// mbc2 carts have built in RAM
|
|
|
|
|
if (mppr == "MBC2")
|
|
|
|
|
{
|
|
|
|
|
cart_RAM = new byte[0x200];
|
2017-08-29 13:18:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
mapper.Core = this;
|
|
|
|
|
mapper.Initialize();
|
2017-11-24 20:44:29 +00:00
|
|
|
|
|
2017-11-25 16:04:07 +00:00
|
|
|
|
if (cart_RAM != null)
|
|
|
|
|
{
|
2017-11-25 16:10:59 +00:00
|
|
|
|
|
|
|
|
|
Console.Write("RAM: "); Console.WriteLine(cart_RAM.Length);
|
|
|
|
|
|
2017-11-25 16:04:07 +00:00
|
|
|
|
if (_syncSettings.Use_SRAM)
|
|
|
|
|
{
|
|
|
|
|
// load cartRAM here
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
for (int i = 0; i < cart_RAM.Length; i++)
|
|
|
|
|
{
|
|
|
|
|
cart_RAM[i] = 0xFF;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2017-11-24 20:44:29 +00:00
|
|
|
|
// Extra RTC initialization for mbc3
|
|
|
|
|
if (mppr == "MBC3")
|
|
|
|
|
{
|
|
|
|
|
Use_RTC = true;
|
|
|
|
|
int days = (int)Math.Floor(_syncSettings.RTCInitialTime / 86400.0);
|
|
|
|
|
|
|
|
|
|
int days_upper = ((days & 0x100) >> 8) | ((days & 0x200) >> 2);
|
|
|
|
|
|
|
|
|
|
mapper.RTC_Get((byte)days_upper, 4);
|
|
|
|
|
mapper.RTC_Get((byte)(days & 0xFF), 3);
|
|
|
|
|
|
|
|
|
|
int remaining = _syncSettings.RTCInitialTime - (days * 86400);
|
|
|
|
|
|
|
|
|
|
int hours = (int)Math.Floor(remaining / 3600.0);
|
|
|
|
|
|
|
|
|
|
mapper.RTC_Get((byte)(hours & 0xFF), 2);
|
|
|
|
|
|
|
|
|
|
remaining = remaining - (hours * 3600);
|
|
|
|
|
|
|
|
|
|
int minutes = (int)Math.Floor(remaining / 60.0);
|
|
|
|
|
|
|
|
|
|
mapper.RTC_Get((byte)(minutes & 0xFF), 1);
|
|
|
|
|
|
|
|
|
|
remaining = remaining - (minutes * 60);
|
|
|
|
|
|
|
|
|
|
mapper.RTC_Get((byte)(remaining & 0xFF), 0);
|
|
|
|
|
}
|
2017-08-29 13:18:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|