forked from sin365/AxibugEmuOnline
core替换为7.7版本
This commit is contained in:
parent
7b2b0f3d20
commit
ed4af60268
@ -1,8 +1,6 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
|
|
||||||
|
|
||||||
internal abstract class Bandai : Board
|
internal abstract class Bandai : Board
|
||||||
{
|
{
|
||||||
@ -140,4 +138,3 @@ namespace MyNes.Core
|
|||||||
eprom.LoadState(stream);
|
eprom.LoadState(stream);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
|
|
||||||
|
|
||||||
internal struct BankInfo
|
internal struct BankInfo
|
||||||
{
|
{
|
||||||
@ -26,4 +24,3 @@ namespace MyNes.Core
|
|||||||
this.IsBattery = IsBattery;
|
this.IsBattery = IsBattery;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
internal class BankInfoSorter : IComparer<BankInfo>
|
internal class BankInfoSorter : IComparer<BankInfo>
|
||||||
{
|
{
|
||||||
public int Compare(BankInfo x, BankInfo y)
|
public int Compare(BankInfo x, BankInfo y)
|
||||||
@ -13,4 +13,3 @@ namespace MyNes.Core
|
|||||||
return result2 - result;
|
return result2 - result;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,9 +1,8 @@
|
|||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
internal class BlankJoypad : IJoypadConnecter
|
internal class BlankJoypad : IJoypadConnecter
|
||||||
{
|
{
|
||||||
public override void Update()
|
public override void Update()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
|
|
||||||
internal class BlankShortuctsHandler : IShortcutsHandler
|
internal class BlankShortuctsHandler : IShortcutsHandler
|
||||||
{
|
{
|
||||||
@ -7,4 +6,3 @@ namespace MyNes.Core
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -2,8 +2,8 @@ using System;
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
internal abstract class Board
|
internal abstract class Board
|
||||||
{
|
{
|
||||||
protected byte[][] PRG_RAM;
|
protected byte[][] PRG_RAM;
|
||||||
@ -1114,4 +1114,3 @@ namespace MyNes.Core
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
internal class BoardInfoAttribute : Attribute
|
internal class BoardInfoAttribute : Attribute
|
||||||
{
|
{
|
||||||
public string Name { get; private set; }
|
public string Name { get; private set; }
|
||||||
@ -54,4 +54,3 @@ namespace MyNes.Core
|
|||||||
this.PPUA12TogglesOnRaisingEdge = PPUA12TogglesOnRaisingEdge;
|
this.PPUA12TogglesOnRaisingEdge = PPUA12TogglesOnRaisingEdge;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
public class BoardInfoObject
|
public class BoardInfoObject
|
||||||
{
|
{
|
||||||
public string Name { get; internal set; }
|
public string Name { get; internal set; }
|
||||||
@ -12,4 +12,3 @@ namespace MyNes.Core
|
|||||||
|
|
||||||
public bool HasIssues { get; internal set; }
|
public bool HasIssues { get; internal set; }
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
internal enum CHRArea : byte
|
internal enum CHRArea : byte
|
||||||
{
|
{
|
||||||
Area0000,
|
Area0000,
|
||||||
@ -11,4 +11,3 @@ namespace MyNes.Core
|
|||||||
Area1800,
|
Area1800,
|
||||||
Area1C00
|
Area1C00
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
namespace ComponentAce.Compression.Libs.zlib
|
namespace ComponentAce.Compression.Libs.zlib;
|
||||||
{
|
|
||||||
internal sealed class Adler32
|
internal sealed class Adler32
|
||||||
{
|
{
|
||||||
private const int BASE = 65521;
|
private const int BASE = 65521;
|
||||||
@ -69,4 +69,3 @@ namespace ComponentAce.Compression.Libs.zlib
|
|||||||
return (num2 << 16) | num;
|
return (num2 << 16) | num;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace ComponentAce.Compression.Libs.zlib
|
namespace ComponentAce.Compression.Libs.zlib;
|
||||||
{
|
|
||||||
public sealed class Deflate
|
public sealed class Deflate
|
||||||
{
|
{
|
||||||
internal class Config
|
internal class Config
|
||||||
@ -333,7 +333,15 @@ namespace ComponentAce.Compression.Libs.zlib
|
|||||||
|
|
||||||
internal static bool smaller(short[] tree, int n, int m, byte[] depth)
|
internal static bool smaller(short[] tree, int n, int m, byte[] depth)
|
||||||
{
|
{
|
||||||
return tree[n * 2] < tree[m * 2] || (tree[n * 2] == tree[m * 2] && depth[n] <= depth[m]);
|
if (tree[n * 2] >= tree[m * 2])
|
||||||
|
{
|
||||||
|
if (tree[n * 2] == tree[m * 2])
|
||||||
|
{
|
||||||
|
return depth[n] <= depth[m];
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
internal void scan_tree(short[] tree, int max_code)
|
internal void scan_tree(short[] tree, int max_code)
|
||||||
@ -738,9 +746,17 @@ namespace ComponentAce.Compression.Libs.zlib
|
|||||||
flush_block_only(flush == 4);
|
flush_block_only(flush == 4);
|
||||||
if (strm.avail_out == 0)
|
if (strm.avail_out == 0)
|
||||||
{
|
{
|
||||||
return (flush == 4) ? 2 : 0;
|
if (flush != 4)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
return (flush != 4) ? 1 : 3;
|
return 2;
|
||||||
|
}
|
||||||
|
if (flush != 4)
|
||||||
|
{
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
return 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
internal void _tr_stored_block(int buf, int stored_len, bool eof)
|
internal void _tr_stored_block(int buf, int stored_len, bool eof)
|
||||||
@ -928,7 +944,11 @@ namespace ComponentAce.Compression.Libs.zlib
|
|||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
return (flush != 4) ? 1 : 3;
|
if (flush != 4)
|
||||||
|
{
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
return 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
internal int deflate_slow(int flush)
|
internal int deflate_slow(int flush)
|
||||||
@ -1032,7 +1052,11 @@ namespace ComponentAce.Compression.Libs.zlib
|
|||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
return (flush != 4) ? 1 : 3;
|
if (flush != 4)
|
||||||
|
{
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
return 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
internal int longest_match(int cur_match)
|
internal int longest_match(int cur_match)
|
||||||
@ -1167,7 +1191,11 @@ namespace ComponentAce.Compression.Libs.zlib
|
|||||||
head = null;
|
head = null;
|
||||||
prev = null;
|
prev = null;
|
||||||
window = null;
|
window = null;
|
||||||
return (status == 113) ? (-3) : 0;
|
if (status != 113)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
return -3;
|
||||||
}
|
}
|
||||||
|
|
||||||
internal int deflateParams(ZStream strm, int _level, int _strategy)
|
internal int deflateParams(ZStream strm, int _level, int _strategy)
|
||||||
@ -1181,7 +1209,7 @@ namespace ComponentAce.Compression.Libs.zlib
|
|||||||
{
|
{
|
||||||
return -2;
|
return -2;
|
||||||
}
|
}
|
||||||
if (config_table[level].func != config_table[_level].func && strm.total_in != 0)
|
if (config_table[level].func != config_table[_level].func && strm.total_in != 0L)
|
||||||
{
|
{
|
||||||
result = strm.deflate(1);
|
result = strm.deflate(1);
|
||||||
}
|
}
|
||||||
@ -1309,16 +1337,16 @@ namespace ComponentAce.Compression.Libs.zlib
|
|||||||
{
|
{
|
||||||
status = 666;
|
status = 666;
|
||||||
}
|
}
|
||||||
if (num4 == 0 || num4 == 2)
|
switch (num4)
|
||||||
{
|
{
|
||||||
|
case 0:
|
||||||
|
case 2:
|
||||||
if (strm.avail_out == 0)
|
if (strm.avail_out == 0)
|
||||||
{
|
{
|
||||||
last_flush = -1;
|
last_flush = -1;
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
case 1:
|
||||||
if (num4 == 1)
|
|
||||||
{
|
|
||||||
if (flush == 1)
|
if (flush == 1)
|
||||||
{
|
{
|
||||||
_tr_align();
|
_tr_align();
|
||||||
@ -1340,6 +1368,7 @@ namespace ComponentAce.Compression.Libs.zlib
|
|||||||
last_flush = -1;
|
last_flush = -1;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (flush != 4)
|
if (flush != 4)
|
||||||
@ -1354,7 +1383,11 @@ namespace ComponentAce.Compression.Libs.zlib
|
|||||||
putShortMSB((int)(strm.adler & 0xFFFF));
|
putShortMSB((int)(strm.adler & 0xFFFF));
|
||||||
strm.flush_pending();
|
strm.flush_pending();
|
||||||
noheader = -1;
|
noheader = -1;
|
||||||
return (pending == 0) ? 1 : 0;
|
if (pending == 0)
|
||||||
|
{
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static Deflate()
|
static Deflate()
|
||||||
@ -1376,4 +1409,3 @@ namespace ComponentAce.Compression.Libs.zlib
|
|||||||
config_table[9] = new Config(32, 258, 258, 4096, 2);
|
config_table[9] = new Config(32, 258, 258, 4096, 2);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace ComponentAce.Compression.Libs.zlib
|
namespace ComponentAce.Compression.Libs.zlib;
|
||||||
{
|
|
||||||
internal sealed class InfBlocks
|
internal sealed class InfBlocks
|
||||||
{
|
{
|
||||||
private const int MANY = 1440;
|
private const int MANY = 1440;
|
||||||
@ -420,9 +420,8 @@ namespace ComponentAce.Compression.Libs.zlib
|
|||||||
write = num4;
|
write = num4;
|
||||||
return inflate_flush(z, r);
|
return inflate_flush(z, r);
|
||||||
}
|
}
|
||||||
if (tb[0] == -1)
|
_ = tb[0];
|
||||||
{
|
_ = -1;
|
||||||
}
|
|
||||||
num6 = hufts[(tb[0] + (num3 & inflate_mask[num6])) * 3 + 1];
|
num6 = hufts[(tb[0] + (num3 & inflate_mask[num6])) * 3 + 1];
|
||||||
int num7 = hufts[(tb[0] + (num3 & inflate_mask[num6])) * 3 + 2];
|
int num7 = hufts[(tb[0] + (num3 & inflate_mask[num6])) * 3 + 2];
|
||||||
if (num7 < 16)
|
if (num7 < 16)
|
||||||
@ -599,7 +598,11 @@ namespace ComponentAce.Compression.Libs.zlib
|
|||||||
|
|
||||||
internal int sync_point()
|
internal int sync_point()
|
||||||
{
|
{
|
||||||
return (mode == 1) ? 1 : 0;
|
if (mode != 1)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
internal int inflate_flush(ZStream z, int r)
|
internal int inflate_flush(ZStream z, int r)
|
||||||
@ -655,4 +658,3 @@ namespace ComponentAce.Compression.Libs.zlib
|
|||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace ComponentAce.Compression.Libs.zlib
|
namespace ComponentAce.Compression.Libs.zlib;
|
||||||
{
|
|
||||||
internal sealed class InfCodes
|
internal sealed class InfCodes
|
||||||
{
|
{
|
||||||
private static readonly int[] inflate_mask = new int[17]
|
private static readonly int[] inflate_mask = new int[17]
|
||||||
@ -54,7 +54,7 @@ namespace ComponentAce.Compression.Libs.zlib
|
|||||||
|
|
||||||
internal int[] tree;
|
internal int[] tree;
|
||||||
|
|
||||||
internal int tree_index = 0;
|
internal int tree_index;
|
||||||
|
|
||||||
internal int need;
|
internal int need;
|
||||||
|
|
||||||
@ -509,7 +509,6 @@ namespace ComponentAce.Compression.Libs.zlib
|
|||||||
num8 += array[(num9 + num8) * 3 + 2];
|
num8 += array[(num9 + num8) * 3 + 2];
|
||||||
num8 += num2 & inflate_mask[num10];
|
num8 += num2 & inflate_mask[num10];
|
||||||
num10 = array[(num9 + num8) * 3];
|
num10 = array[(num9 + num8) * 3];
|
||||||
bool flag = true;
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
z.msg = "invalid distance code";
|
z.msg = "invalid distance code";
|
||||||
@ -611,7 +610,6 @@ namespace ComponentAce.Compression.Libs.zlib
|
|||||||
num5--;
|
num5--;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
bool flag2 = true;
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (((uint)num10 & 0x20u) != 0)
|
if (((uint)num10 & 0x20u) != 0)
|
||||||
@ -663,4 +661,3 @@ namespace ComponentAce.Compression.Libs.zlib
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace ComponentAce.Compression.Libs.zlib
|
namespace ComponentAce.Compression.Libs.zlib;
|
||||||
{
|
|
||||||
internal sealed class InfTree
|
internal sealed class InfTree
|
||||||
{
|
{
|
||||||
private const int MANY = 1440;
|
private const int MANY = 1440;
|
||||||
@ -398,7 +398,11 @@ namespace ComponentAce.Compression.Libs.zlib
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return (num5 != 0 && num4 != 1) ? (-5) : 0;
|
if (num5 == 0 || num4 == 1)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
return -5;
|
||||||
}
|
}
|
||||||
|
|
||||||
internal static int inflate_trees_bits(int[] c, int[] bb, int[] tb, int[] hp, ZStream z)
|
internal static int inflate_trees_bits(int[] c, int[] bb, int[] tb, int[] hp, ZStream z)
|
||||||
@ -472,4 +476,3 @@ namespace ComponentAce.Compression.Libs.zlib
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
namespace ComponentAce.Compression.Libs.zlib
|
namespace ComponentAce.Compression.Libs.zlib;
|
||||||
{
|
|
||||||
internal sealed class Inflate
|
internal sealed class Inflate
|
||||||
{
|
{
|
||||||
private const int MAX_WBITS = 15;
|
private const int MAX_WBITS = 15;
|
||||||
@ -250,7 +250,7 @@ namespace ComponentAce.Compression.Libs.zlib
|
|||||||
case -3:
|
case -3:
|
||||||
z.istate.mode = 13;
|
z.istate.mode = 13;
|
||||||
z.istate.marker = 0;
|
z.istate.marker = 0;
|
||||||
goto end_IL_004b;
|
goto end_IL_0031;
|
||||||
case 0:
|
case 0:
|
||||||
num = f;
|
num = f;
|
||||||
break;
|
break;
|
||||||
@ -327,7 +327,7 @@ namespace ComponentAce.Compression.Libs.zlib
|
|||||||
{
|
{
|
||||||
return -2;
|
return -2;
|
||||||
}
|
}
|
||||||
end_IL_004b:
|
end_IL_0031:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -406,4 +406,3 @@ namespace ComponentAce.Compression.Libs.zlib
|
|||||||
return z.istate.blocks.sync_point();
|
return z.istate.blocks.sync_point();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
namespace ComponentAce.Compression.Libs.zlib
|
namespace ComponentAce.Compression.Libs.zlib;
|
||||||
{
|
|
||||||
internal sealed class StaticTree
|
internal sealed class StaticTree
|
||||||
{
|
{
|
||||||
private const int MAX_BITS = 15;
|
private const int MAX_BITS = 15;
|
||||||
@ -123,4 +123,3 @@ namespace ComponentAce.Compression.Libs.zlib
|
|||||||
static_bl_desc = new StaticTree(null, Tree.extra_blbits, 0, 19, 7);
|
static_bl_desc = new StaticTree(null, Tree.extra_blbits, 0, 19, 7);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
|
|
||||||
namespace ComponentAce.Compression.Libs.zlib
|
namespace ComponentAce.Compression.Libs.zlib;
|
||||||
{
|
|
||||||
public class SupportClass
|
public class SupportClass
|
||||||
{
|
{
|
||||||
public static long Identity(long literal)
|
public static long Identity(long literal)
|
||||||
@ -101,4 +101,3 @@ namespace ComponentAce.Compression.Libs.zlib
|
|||||||
return Encoding.UTF8.GetChars(byteArray);
|
return Encoding.UTF8.GetChars(byteArray);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace ComponentAce.Compression.Libs.zlib
|
namespace ComponentAce.Compression.Libs.zlib;
|
||||||
{
|
|
||||||
internal sealed class Tree
|
internal sealed class Tree
|
||||||
{
|
{
|
||||||
private const int MAX_BITS = 15;
|
private const int MAX_BITS = 15;
|
||||||
@ -166,7 +166,11 @@ namespace ComponentAce.Compression.Libs.zlib
|
|||||||
|
|
||||||
internal static int d_code(int dist)
|
internal static int d_code(int dist)
|
||||||
{
|
{
|
||||||
return (dist < 256) ? _dist_code[dist] : _dist_code[256 + SupportClass.URShift(dist, 7)];
|
if (dist >= 256)
|
||||||
|
{
|
||||||
|
return _dist_code[256 + SupportClass.URShift(dist, 7)];
|
||||||
|
}
|
||||||
|
return _dist_code[dist];
|
||||||
}
|
}
|
||||||
|
|
||||||
internal void gen_bitlen(Deflate s)
|
internal void gen_bitlen(Deflate s)
|
||||||
@ -334,4 +338,3 @@ namespace ComponentAce.Compression.Libs.zlib
|
|||||||
return SupportClass.URShift(num, 1);
|
return SupportClass.URShift(num, 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace ComponentAce.Compression.Libs.zlib
|
namespace ComponentAce.Compression.Libs.zlib;
|
||||||
{
|
|
||||||
public class ZInputStream : BinaryReader
|
public class ZInputStream : BinaryReader
|
||||||
{
|
{
|
||||||
protected ZStream z = new ZStream();
|
protected ZStream z = new ZStream();
|
||||||
@ -16,9 +16,9 @@ namespace ComponentAce.Compression.Libs.zlib
|
|||||||
|
|
||||||
protected bool compress;
|
protected bool compress;
|
||||||
|
|
||||||
internal Stream in_Renamed = null;
|
internal Stream in_Renamed;
|
||||||
|
|
||||||
internal bool nomoreinput = false;
|
internal bool nomoreinput;
|
||||||
|
|
||||||
public virtual int FlushMode
|
public virtual int FlushMode
|
||||||
{
|
{
|
||||||
@ -131,4 +131,3 @@ namespace ComponentAce.Compression.Libs.zlib
|
|||||||
in_Renamed.Close();
|
in_Renamed.Close();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace ComponentAce.Compression.Libs.zlib
|
namespace ComponentAce.Compression.Libs.zlib;
|
||||||
{
|
|
||||||
public class ZOutputStream : Stream
|
public class ZOutputStream : Stream
|
||||||
{
|
{
|
||||||
protected internal ZStream z = new ZStream();
|
protected internal ZStream z = new ZStream();
|
||||||
@ -190,4 +190,3 @@ namespace ComponentAce.Compression.Libs.zlib
|
|||||||
return 0L;
|
return 0L;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace ComponentAce.Compression.Libs.zlib
|
namespace ComponentAce.Compression.Libs.zlib;
|
||||||
{
|
|
||||||
public sealed class ZStream
|
public sealed class ZStream
|
||||||
{
|
{
|
||||||
private const int MAX_WBITS = 15;
|
private const int MAX_WBITS = 15;
|
||||||
@ -173,8 +173,10 @@ namespace ComponentAce.Compression.Libs.zlib
|
|||||||
}
|
}
|
||||||
if (pending != 0)
|
if (pending != 0)
|
||||||
{
|
{
|
||||||
if (dstate.pending_buf.Length <= dstate.pending_out || next_out.Length <= next_out_index || dstate.pending_buf.Length < dstate.pending_out + pending || next_out.Length < next_out_index + pending)
|
if (dstate.pending_buf.Length > dstate.pending_out && next_out.Length > next_out_index && dstate.pending_buf.Length >= dstate.pending_out + pending)
|
||||||
{
|
{
|
||||||
|
_ = next_out.Length;
|
||||||
|
_ = next_out_index + pending;
|
||||||
}
|
}
|
||||||
Array.Copy(dstate.pending_buf, dstate.pending_out, next_out, next_out_index, pending);
|
Array.Copy(dstate.pending_buf, dstate.pending_out, next_out, next_out_index, pending);
|
||||||
next_out_index += pending;
|
next_out_index += pending;
|
||||||
@ -219,4 +221,3 @@ namespace ComponentAce.Compression.Libs.zlib
|
|||||||
_adler = null;
|
_adler = null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace ComponentAce.Compression.Libs.zlib
|
namespace ComponentAce.Compression.Libs.zlib;
|
||||||
{
|
|
||||||
public class ZStreamException : IOException
|
public class ZStreamException : IOException
|
||||||
{
|
{
|
||||||
public ZStreamException()
|
public ZStreamException()
|
||||||
@ -13,4 +13,3 @@ namespace ComponentAce.Compression.Libs.zlib
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
namespace ComponentAce.Compression.Libs.zlib
|
namespace ComponentAce.Compression.Libs.zlib;
|
||||||
{
|
|
||||||
public sealed class zlibConst
|
public sealed class zlibConst
|
||||||
{
|
{
|
||||||
private const string version_Renamed_Field = "1.0.2";
|
private const string version_Renamed_Field = "1.0.2";
|
||||||
@ -51,4 +51,3 @@ namespace ComponentAce.Compression.Libs.zlib
|
|||||||
return "1.0.2";
|
return "1.0.2";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
using System.Security.Cryptography;
|
using System.Security.Cryptography;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
public class Crc32 : HashAlgorithm
|
public class Crc32 : HashAlgorithm
|
||||||
{
|
{
|
||||||
public const uint DefaultPolynomial = 3988292384u;
|
public const uint DefaultPolynomial = 3988292384u;
|
||||||
@ -106,4 +106,3 @@ namespace MyNes.Core
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,9 +1,8 @@
|
|||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
public enum EmuRegion
|
public enum EmuRegion
|
||||||
{
|
{
|
||||||
NTSC,
|
NTSC,
|
||||||
PALB,
|
PALB,
|
||||||
DENDY
|
DENDY
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
public class EmuSettings : ISettings
|
public class EmuSettings : ISettings
|
||||||
{
|
{
|
||||||
public string SnapsFolder = "Snaps";
|
public string SnapsFolder = "Snaps";
|
||||||
@ -10,9 +10,9 @@ namespace MyNes.Core
|
|||||||
|
|
||||||
public string SnapsFormat = ".png";
|
public string SnapsFormat = ".png";
|
||||||
|
|
||||||
public bool SnapsReplace = false;
|
public bool SnapsReplace;
|
||||||
|
|
||||||
public int RegionSetting = 0;
|
public int RegionSetting;
|
||||||
|
|
||||||
public string StateFolder = "States";
|
public string StateFolder = "States";
|
||||||
|
|
||||||
@ -97,4 +97,3 @@ namespace MyNes.Core
|
|||||||
StateHandler.StateFolder = StateFolder;
|
StateHandler.StateFolder = StateFolder;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
internal class Eprom
|
internal class Eprom
|
||||||
{
|
{
|
||||||
private enum EpromDevice
|
private enum EpromDevice
|
||||||
@ -25,23 +25,23 @@ namespace MyNes.Core
|
|||||||
|
|
||||||
private byte[] data;
|
private byte[] data;
|
||||||
|
|
||||||
private EpromMode mode = EpromMode.Data;
|
private EpromMode mode;
|
||||||
|
|
||||||
private EpromMode nextmode = EpromMode.Data;
|
private EpromMode nextmode;
|
||||||
|
|
||||||
private EpromDevice device = EpromDevice.X24C01;
|
private EpromDevice device;
|
||||||
|
|
||||||
private bool psda;
|
private bool psda;
|
||||||
|
|
||||||
private bool pscl;
|
private bool pscl;
|
||||||
|
|
||||||
private int output = 0;
|
private int output;
|
||||||
|
|
||||||
private int cbit = 0;
|
private int cbit;
|
||||||
|
|
||||||
private int caddress = 0;
|
private int caddress;
|
||||||
|
|
||||||
private int cdata = 0;
|
private int cdata;
|
||||||
|
|
||||||
private bool isRead;
|
private bool isRead;
|
||||||
|
|
||||||
@ -380,4 +380,3 @@ namespace MyNes.Core
|
|||||||
isRead = stream.ReadBoolean();
|
isRead = stream.ReadBoolean();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
internal abstract class FFE : Board
|
internal abstract class FFE : Board
|
||||||
{
|
{
|
||||||
protected bool irqEnable;
|
protected bool irqEnable;
|
||||||
@ -53,4 +53,3 @@ namespace MyNes.Core
|
|||||||
irqCounter = bin.ReadInt32();
|
irqCounter = bin.ReadInt32();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
public class GameGenie
|
public class GameGenie
|
||||||
{
|
{
|
||||||
public string[] LettersTable = new string[16]
|
public string[] LettersTable = new string[16]
|
||||||
@ -138,8 +138,7 @@ namespace MyNes.Core
|
|||||||
int num5 = 0;
|
int num5 = 0;
|
||||||
int num6 = 0;
|
int num6 = 0;
|
||||||
int num7 = 0;
|
int num7 = 0;
|
||||||
int num8 = 0;
|
int num8 = (code >> 7) & 1;
|
||||||
num8 = (code >> 7) & 1;
|
|
||||||
num7 = (code >> 2) & 1;
|
num7 = (code >> 2) & 1;
|
||||||
num6 = (code >> 1) & 1;
|
num6 = (code >> 1) & 1;
|
||||||
num5 = code & 1;
|
num5 = code & 1;
|
||||||
@ -150,4 +149,3 @@ namespace MyNes.Core
|
|||||||
return (byte)((num8 << 7) | (num7 << 6) | (num6 << 5) | (num5 << 4) | (num4 << 3) | (num3 << 2) | (num2 << 1) | num);
|
return (byte)((num8 << 7) | (num7 << 6) | (num6 << 5) | (num5 << 4) | (num4 << 3) | (num3 << 2) | (num2 << 1) | num);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
public struct GameGenieCode
|
public struct GameGenieCode
|
||||||
{
|
{
|
||||||
public string Name;
|
public string Name;
|
||||||
@ -16,4 +16,3 @@ namespace MyNes.Core
|
|||||||
|
|
||||||
public bool Enabled;
|
public bool Enabled;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
internal delegate void GetIsPlaying(out bool playing);
|
internal delegate void GetIsPlaying(out bool playing);
|
||||||
}
|
|
||||||
|
@ -1,8 +1,7 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
internal class HassIssuesAttribute : Attribute
|
internal class HassIssuesAttribute : Attribute
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Security.Cryptography;
|
using System.Security.Cryptography;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
public class HelperTools
|
public class HelperTools
|
||||||
{
|
{
|
||||||
public static string GetFileSize(string FilePath)
|
public static string GetFileSize(string FilePath)
|
||||||
@ -88,8 +88,7 @@ namespace MyNes.Core
|
|||||||
{
|
{
|
||||||
if (File.Exists(FilePath))
|
if (File.Exists(FilePath))
|
||||||
{
|
{
|
||||||
FileInfo fileInfo = new FileInfo(FilePath);
|
return new FileInfo(FilePath).Length;
|
||||||
return fileInfo.Length;
|
|
||||||
}
|
}
|
||||||
return 0L;
|
return 0L;
|
||||||
}
|
}
|
||||||
@ -117,10 +116,8 @@ namespace MyNes.Core
|
|||||||
stream.Read(buffer, 0, (int)stream.Length);
|
stream.Read(buffer, 0, (int)stream.Length);
|
||||||
stream.Close();
|
stream.Close();
|
||||||
string text = "";
|
string text = "";
|
||||||
Crc32 crc = new Crc32();
|
byte[] array = new Crc32().ComputeHash(buffer);
|
||||||
byte[] array = crc.ComputeHash(buffer);
|
foreach (byte b in array)
|
||||||
byte[] array2 = array;
|
|
||||||
foreach (byte b in array2)
|
|
||||||
{
|
{
|
||||||
text += b.ToString("x2").ToLower();
|
text += b.ToString("x2").ToLower();
|
||||||
}
|
}
|
||||||
@ -139,10 +136,8 @@ namespace MyNes.Core
|
|||||||
stream.Read(buffer, 0, (int)(stream.Length - bytesToSkip));
|
stream.Read(buffer, 0, (int)(stream.Length - bytesToSkip));
|
||||||
stream.Close();
|
stream.Close();
|
||||||
string text = "";
|
string text = "";
|
||||||
Crc32 crc = new Crc32();
|
byte[] array = new Crc32().ComputeHash(buffer);
|
||||||
byte[] array = crc.ComputeHash(buffer);
|
foreach (byte b in array)
|
||||||
byte[] array2 = array;
|
|
||||||
foreach (byte b in array2)
|
|
||||||
{
|
{
|
||||||
text += b.ToString("x2").ToLower();
|
text += b.ToString("x2").ToLower();
|
||||||
}
|
}
|
||||||
@ -157,10 +152,8 @@ namespace MyNes.Core
|
|||||||
{
|
{
|
||||||
byte[] buffer = GetBuffer(filePath);
|
byte[] buffer = GetBuffer(filePath);
|
||||||
string text = "";
|
string text = "";
|
||||||
SHA1Managed sHA1Managed = new SHA1Managed();
|
byte[] array = new SHA1Managed().ComputeHash(buffer);
|
||||||
byte[] array = sHA1Managed.ComputeHash(buffer);
|
foreach (byte b in array)
|
||||||
byte[] array2 = array;
|
|
||||||
foreach (byte b in array2)
|
|
||||||
{
|
{
|
||||||
text += b.ToString("x2").ToLower();
|
text += b.ToString("x2").ToLower();
|
||||||
}
|
}
|
||||||
@ -178,4 +171,3 @@ namespace MyNes.Core
|
|||||||
return array;
|
return array;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
public interface IAudioProvider
|
public interface IAudioProvider
|
||||||
{
|
{
|
||||||
string Name { get; }
|
string Name { get; }
|
||||||
@ -26,4 +26,3 @@ namespace MyNes.Core
|
|||||||
|
|
||||||
void SetVolume(int Vol);
|
void SetVolume(int Vol);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
public abstract class IJoypadConnecter
|
public abstract class IJoypadConnecter
|
||||||
{
|
{
|
||||||
protected byte DATA;
|
protected byte DATA;
|
||||||
@ -15,4 +15,3 @@ namespace MyNes.Core
|
|||||||
return DATA;
|
return DATA;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Security.Cryptography;
|
using System.Security.Cryptography;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
public class INes : IRom
|
public class INes : IRom
|
||||||
{
|
{
|
||||||
public bool HasBattery { get; private set; }
|
public bool HasBattery { get; private set; }
|
||||||
@ -25,10 +25,8 @@ namespace MyNes.Core
|
|||||||
byte[] buffer = new byte[fileStream.Length - 16];
|
byte[] buffer = new byte[fileStream.Length - 16];
|
||||||
fileStream.Read(buffer, 0, (int)(fileStream.Length - 16));
|
fileStream.Read(buffer, 0, (int)(fileStream.Length - 16));
|
||||||
base.SHA1 = "";
|
base.SHA1 = "";
|
||||||
SHA1Managed sHA1Managed = new SHA1Managed();
|
byte[] array2 = new SHA1Managed().ComputeHash(buffer);
|
||||||
byte[] array2 = sHA1Managed.ComputeHash(buffer);
|
foreach (byte b in array2)
|
||||||
byte[] array3 = array2;
|
|
||||||
foreach (byte b in array3)
|
|
||||||
{
|
{
|
||||||
base.SHA1 += b.ToString("x2").ToLower();
|
base.SHA1 += b.ToString("x2").ToLower();
|
||||||
}
|
}
|
||||||
@ -94,4 +92,3 @@ namespace MyNes.Core
|
|||||||
fileStream.Close();
|
fileStream.Close();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
public abstract class IRom
|
public abstract class IRom
|
||||||
{
|
{
|
||||||
public bool IsValid { get; set; }
|
public bool IsValid { get; set; }
|
||||||
@ -26,4 +26,3 @@ namespace MyNes.Core
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -3,8 +3,8 @@ using System.Collections.Generic;
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
public abstract class ISettings
|
public abstract class ISettings
|
||||||
{
|
{
|
||||||
protected string filePath;
|
protected string filePath;
|
||||||
@ -115,7 +115,11 @@ namespace MyNes.Core
|
|||||||
}
|
}
|
||||||
if (field.FieldType == typeof(bool))
|
if (field.FieldType == typeof(bool))
|
||||||
{
|
{
|
||||||
return ((bool)value) ? "1" : "0";
|
if (!(bool)value)
|
||||||
|
{
|
||||||
|
return "0";
|
||||||
|
}
|
||||||
|
return "1";
|
||||||
}
|
}
|
||||||
if (field.FieldType == typeof(int))
|
if (field.FieldType == typeof(int))
|
||||||
{
|
{
|
||||||
@ -146,4 +150,3 @@ namespace MyNes.Core
|
|||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
public interface IShortcutsHandler
|
public interface IShortcutsHandler
|
||||||
{
|
{
|
||||||
void Update();
|
void Update();
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
public abstract class IVSUnisystemDIPConnecter
|
public abstract class IVSUnisystemDIPConnecter
|
||||||
{
|
{
|
||||||
public abstract void Update();
|
public abstract void Update();
|
||||||
@ -22,4 +22,3 @@ namespace MyNes.Core
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
public interface IVideoProvider
|
public interface IVideoProvider
|
||||||
{
|
{
|
||||||
string Name { get; }
|
string Name { get; }
|
||||||
@ -38,4 +38,3 @@ namespace MyNes.Core
|
|||||||
|
|
||||||
void ApplyFilter();
|
void ApplyFilter();
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
public abstract class IZapperConnecter
|
public abstract class IZapperConnecter
|
||||||
{
|
{
|
||||||
protected bool Trigger;
|
protected bool Trigger;
|
||||||
@ -13,4 +13,3 @@ namespace MyNes.Core
|
|||||||
return (byte)((Trigger ? 16u : 0u) | (State ? 8u : 0u));
|
return (byte)((Trigger ? 16u : 0u) | (State ? 8u : 0u));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
internal abstract class MMC2 : Board
|
internal abstract class MMC2 : Board
|
||||||
{
|
{
|
||||||
private byte chr_reg0A;
|
private byte chr_reg0A;
|
||||||
@ -113,4 +113,3 @@ namespace MyNes.Core
|
|||||||
latch_b = stream.ReadByte();
|
latch_b = stream.ReadByte();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
internal class MMC5Pcm
|
internal class MMC5Pcm
|
||||||
{
|
{
|
||||||
internal byte output;
|
internal byte output;
|
||||||
@ -39,7 +39,7 @@ namespace MyNes.Core
|
|||||||
|
|
||||||
internal byte Read5010()
|
internal byte Read5010()
|
||||||
{
|
{
|
||||||
byte result = (byte)((irqTrip & PCMIRQenable) ? 128u : 0u);
|
byte result = (byte)((irqTrip & PCMIRQenable) ? 128 : 0);
|
||||||
irqTrip = false;
|
irqTrip = false;
|
||||||
NesEmu.IRQFlags &= -9;
|
NesEmu.IRQFlags &= -9;
|
||||||
return result;
|
return result;
|
||||||
@ -83,4 +83,3 @@ namespace MyNes.Core
|
|||||||
irqTrip = stream.ReadBoolean();
|
irqTrip = stream.ReadBoolean();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
internal class MMC5Sqr
|
internal class MMC5Sqr
|
||||||
{
|
{
|
||||||
private byte[][] duty_cycle_sequences = new byte[4][]
|
private byte[][] duty_cycle_sequences = new byte[4][]
|
||||||
@ -211,4 +211,3 @@ namespace MyNes.Core
|
|||||||
output = bin.ReadInt32();
|
output = bin.ReadInt32();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
public class MNInterfaceLanguage
|
public class MNInterfaceLanguage
|
||||||
{
|
{
|
||||||
public static string Message_RomInfoCanBeOnlyShown = "Rom info can be shown only when emulation is on (i.e. game is loaded)";
|
public static string Message_RomInfoCanBeOnlyShown = "Rom info can be shown only when emulation is on (i.e. game is loaded)";
|
||||||
@ -126,4 +126,3 @@ namespace MyNes.Core
|
|||||||
|
|
||||||
public static string IssueMapper255 = "Mapper 255 is not tested, issues may occur";
|
public static string IssueMapper255 = "Mapper 255 is not tested, issues may occur";
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("NROM", 0)]
|
[BoardInfo("NROM", 0)]
|
||||||
internal class Mapper000 : Board
|
internal class Mapper000 : Board
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("MMC1", 1, 4, 64)]
|
[BoardInfo("MMC1", 1, 4, 64)]
|
||||||
internal class Mapper001 : Board
|
internal class Mapper001 : Board
|
||||||
{
|
{
|
||||||
@ -10,9 +10,9 @@ namespace MyNes.Core
|
|||||||
|
|
||||||
private byte[] reg = new byte[4];
|
private byte[] reg = new byte[4];
|
||||||
|
|
||||||
private byte shift = 0;
|
private byte shift;
|
||||||
|
|
||||||
private byte buffer = 0;
|
private byte buffer;
|
||||||
|
|
||||||
private bool flag_p;
|
private bool flag_p;
|
||||||
|
|
||||||
@ -242,4 +242,3 @@ namespace MyNes.Core
|
|||||||
cpuCycles = stream.ReadInt32();
|
cpuCycles = stream.ReadInt32();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("UxROM", 2)]
|
[BoardInfo("UxROM", 2)]
|
||||||
internal class Mapper002 : Board
|
internal class Mapper002 : Board
|
||||||
{
|
{
|
||||||
@ -14,4 +14,3 @@ namespace MyNes.Core
|
|||||||
Switch16KPRG(val, PRGArea.Area8000);
|
Switch16KPRG(val, PRGArea.Area8000);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("CNROM", 3)]
|
[BoardInfo("CNROM", 3)]
|
||||||
internal class Mapper003 : Board
|
internal class Mapper003 : Board
|
||||||
{
|
{
|
||||||
@ -12,4 +12,3 @@ namespace MyNes.Core
|
|||||||
Switch08KCHR(data_temp);
|
Switch08KCHR(data_temp);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("MMC3", 4, true, true)]
|
[BoardInfo("MMC3", 4, true, true)]
|
||||||
internal class Mapper004 : Board
|
internal class Mapper004 : Board
|
||||||
{
|
{
|
||||||
@ -221,4 +221,3 @@ namespace MyNes.Core
|
|||||||
mmc3_alt_behavior = bin.ReadBoolean();
|
mmc3_alt_behavior = bin.ReadBoolean();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("MMC5", 5, 8, 16)]
|
[BoardInfo("MMC5", 5, 8, 16)]
|
||||||
[WithExternalSound]
|
[WithExternalSound]
|
||||||
[HassIssues]
|
[HassIssues]
|
||||||
@ -82,7 +82,9 @@ namespace MyNes.Core
|
|||||||
|
|
||||||
private MMC5Pcm snd_3;
|
private MMC5Pcm snd_3;
|
||||||
|
|
||||||
private double[][][][][] mix_table;
|
private double[] audio_pulse_table;
|
||||||
|
|
||||||
|
private double[] audio_tnd_table;
|
||||||
|
|
||||||
internal override string Issues => MNInterfaceLanguage.IssueMapper5;
|
internal override string Issues => MNInterfaceLanguage.IssueMapper5;
|
||||||
|
|
||||||
@ -92,46 +94,29 @@ namespace MyNes.Core
|
|||||||
snd_1 = new MMC5Sqr();
|
snd_1 = new MMC5Sqr();
|
||||||
snd_2 = new MMC5Sqr();
|
snd_2 = new MMC5Sqr();
|
||||||
snd_3 = new MMC5Pcm();
|
snd_3 = new MMC5Pcm();
|
||||||
mix_table = new double[16][][][][];
|
audio_pulse_table = new double[32];
|
||||||
for (int i = 0; i < 16; i++)
|
for (int i = 0; i < 32; i++)
|
||||||
{
|
{
|
||||||
mix_table[i] = new double[16][][][];
|
audio_pulse_table[i] = 95.52 / (8128.0 / (double)i + 100.0);
|
||||||
for (int j = 0; j < 16; j++)
|
|
||||||
{
|
|
||||||
mix_table[i][j] = new double[16][][];
|
|
||||||
for (int k = 0; k < 16; k++)
|
|
||||||
{
|
|
||||||
mix_table[i][j][k] = new double[16][];
|
|
||||||
for (int l = 0; l < 16; l++)
|
|
||||||
{
|
|
||||||
mix_table[i][j][k][l] = new double[256];
|
|
||||||
for (int m = 0; m < 256; m++)
|
|
||||||
{
|
|
||||||
double num = 95.88 / (8128.0 / (double)(i + j) + 100.0);
|
|
||||||
double num2 = 159.79 / (1.0 / ((double)k / 8227.0 + (double)l / 12241.0 + (double)m / 22638.0) + 100.0);
|
|
||||||
mix_table[i][j][k][l][m] = num + num2;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
audio_tnd_table = new double[204];
|
||||||
|
for (int j = 0; j < 204; j++)
|
||||||
|
{
|
||||||
|
audio_tnd_table[j] = 163.67 / (24329.0 / (double)j + 100.0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
internal override void HardReset()
|
internal override void HardReset()
|
||||||
{
|
{
|
||||||
base.HardReset();
|
base.HardReset();
|
||||||
string text = SHA1.ToUpper();
|
switch (SHA1.ToUpper())
|
||||||
string text2 = text;
|
|
||||||
if (!(text2 == "37267833C984F176DB4B0BC9D45DABA0FFF45304"))
|
|
||||||
{
|
|
||||||
if (text2 == "800AEFE756E85A0A78CCB4DAE68EBBA5DF24BF41")
|
|
||||||
{
|
{
|
||||||
|
case "37267833C984F176DB4B0BC9D45DABA0FFF45304":
|
||||||
useSRAMmirroring = true;
|
useSRAMmirroring = true;
|
||||||
}
|
break;
|
||||||
}
|
case "800AEFE756E85A0A78CCB4DAE68EBBA5DF24BF41":
|
||||||
else
|
|
||||||
{
|
|
||||||
useSRAMmirroring = true;
|
useSRAMmirroring = true;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
Console.WriteLine("MMC5: using PRG RAM mirroring = " + useSRAMmirroring);
|
Console.WriteLine("MMC5: using PRG RAM mirroring = " + useSRAMmirroring);
|
||||||
CHROffset_spr = new int[8];
|
CHROffset_spr = new int[8];
|
||||||
@ -273,8 +258,7 @@ namespace MyNes.Core
|
|||||||
case 20758:
|
case 20758:
|
||||||
{
|
{
|
||||||
int num = prg_mode;
|
int num = prg_mode;
|
||||||
int num2 = num;
|
if ((uint)(num - 2) <= 1u)
|
||||||
if ((uint)(num2 - 2) <= 1u)
|
|
||||||
{
|
{
|
||||||
Toggle08KPRG_RAM((value & 0x80) == 0, PRGArea.AreaC000);
|
Toggle08KPRG_RAM((value & 0x80) == 0, PRGArea.AreaC000);
|
||||||
Switch08KPRG(value & 0x7F, PRGArea.AreaC000);
|
Switch08KPRG(value & 0x7F, PRGArea.AreaC000);
|
||||||
@ -531,9 +515,7 @@ namespace MyNes.Core
|
|||||||
{
|
{
|
||||||
split_doit = split_watch_tile >= split_tile;
|
split_doit = split_watch_tile >= split_tile;
|
||||||
}
|
}
|
||||||
if (!split_doit)
|
_ = split_doit;
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
if (ExRAM_mode == 1)
|
if (ExRAM_mode == 1)
|
||||||
{
|
{
|
||||||
@ -571,9 +553,7 @@ namespace MyNes.Core
|
|||||||
|
|
||||||
internal override void ReadNMT(ref ushort address, out byte data)
|
internal override void ReadNMT(ref ushort address, out byte data)
|
||||||
{
|
{
|
||||||
if (split_doit)
|
_ = split_doit;
|
||||||
{
|
|
||||||
}
|
|
||||||
if (ExRAM_mode == 1)
|
if (ExRAM_mode == 1)
|
||||||
{
|
{
|
||||||
if ((address & 0x3FF) <= 959)
|
if ((address & 0x3FF) <= 959)
|
||||||
@ -756,7 +736,7 @@ namespace MyNes.Core
|
|||||||
|
|
||||||
internal override double APUGetSample()
|
internal override double APUGetSample()
|
||||||
{
|
{
|
||||||
return mix_table[snd_1.output][snd_2.output][0][0][snd_3.output];
|
return audio_pulse_table[snd_1.output + snd_2.output] + audio_tnd_table[snd_3.output];
|
||||||
}
|
}
|
||||||
|
|
||||||
internal override void APUApplyChannelsSettings()
|
internal override void APUApplyChannelsSettings()
|
||||||
@ -887,4 +867,3 @@ namespace MyNes.Core
|
|||||||
snd_3.LoadState(ref stream);
|
snd_3.LoadState(ref stream);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("FFE F4xxx", 6)]
|
[BoardInfo("FFE F4xxx", 6)]
|
||||||
[HassIssues]
|
[HassIssues]
|
||||||
internal class Mapper006 : FFE
|
internal class Mapper006 : FFE
|
||||||
@ -18,4 +18,3 @@ namespace MyNes.Core
|
|||||||
Switch16KPRG((data >> 2) & 0xF, PRGArea.Area8000);
|
Switch16KPRG((data >> 2) & 0xF, PRGArea.Area8000);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("AxROM", 7)]
|
[BoardInfo("AxROM", 7)]
|
||||||
internal class Mapper007 : Board
|
internal class Mapper007 : Board
|
||||||
{
|
{
|
||||||
@ -9,4 +9,3 @@ namespace MyNes.Core
|
|||||||
Switch32KPRG(val & 7, PRGArea.Area8000);
|
Switch32KPRG(val & 7, PRGArea.Area8000);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("FFE F3xxx", 8)]
|
[BoardInfo("FFE F3xxx", 8)]
|
||||||
[HassIssues]
|
[HassIssues]
|
||||||
internal class Mapper008 : FFE
|
internal class Mapper008 : FFE
|
||||||
@ -12,4 +12,3 @@ namespace MyNes.Core
|
|||||||
Switch08KCHR(data & 3);
|
Switch08KCHR(data & 3);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("MMC2", 9)]
|
[BoardInfo("MMC2", 9)]
|
||||||
internal class Mapper009 : MMC2
|
internal class Mapper009 : MMC2
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("MMC4", 10)]
|
[BoardInfo("MMC4", 10)]
|
||||||
internal class Mapper010 : MMC2
|
internal class Mapper010 : MMC2
|
||||||
{
|
{
|
||||||
@ -22,4 +22,3 @@ namespace MyNes.Core
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("Color Dreams", 11)]
|
[BoardInfo("Color Dreams", 11)]
|
||||||
internal class Mapper011 : Board
|
internal class Mapper011 : Board
|
||||||
{
|
{
|
||||||
@ -13,4 +13,3 @@ namespace MyNes.Core
|
|||||||
Switch08KCHR((writeData >> 4) & 0xF);
|
Switch08KCHR((writeData >> 4) & 0xF);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("CPROM", 13, 1, 16)]
|
[BoardInfo("CPROM", 13, 1, 16)]
|
||||||
internal class Mapper013 : Board
|
internal class Mapper013 : Board
|
||||||
{
|
{
|
||||||
@ -18,4 +18,3 @@ namespace MyNes.Core
|
|||||||
Switch04KCHR(writeData & 3, CHRArea.Area1000);
|
Switch04KCHR(writeData & 3, CHRArea.Area1000);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("100-in-1 Contra Function 16", 15)]
|
[BoardInfo("100-in-1 Contra Function 16", 15)]
|
||||||
internal class Mapper015 : Board
|
internal class Mapper015 : Board
|
||||||
{
|
{
|
||||||
@ -33,4 +33,3 @@ namespace MyNes.Core
|
|||||||
Switch01KNMTFromMirroring(((data & 0x40) == 64) ? Mirroring.Horz : Mirroring.Vert);
|
Switch01KNMTFromMirroring(((data & 0x40) == 64) ? Mirroring.Horz : Mirroring.Vert);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("Bandai", 16)]
|
[BoardInfo("Bandai", 16)]
|
||||||
internal class Mapper016 : Bandai
|
internal class Mapper016 : Bandai
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("FFE F8xxx", 17)]
|
[BoardInfo("FFE F8xxx", 17)]
|
||||||
internal class Mapper017 : FFE
|
internal class Mapper017 : FFE
|
||||||
{
|
{
|
||||||
@ -61,4 +61,3 @@ namespace MyNes.Core
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("Jaleco SS8806", 18)]
|
[BoardInfo("Jaleco SS8806", 18)]
|
||||||
internal class Mapper018 : Board
|
internal class Mapper018 : Board
|
||||||
{
|
{
|
||||||
@ -216,4 +216,3 @@ namespace MyNes.Core
|
|||||||
irqMask = stream.ReadInt32();
|
irqMask = stream.ReadInt32();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("Namcot 106", 19, 1, 256)]
|
[BoardInfo("Namcot 106", 19, 1, 256)]
|
||||||
internal class Mapper019 : Namcot106
|
internal class Mapper019 : Namcot106
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("VRC4", 21)]
|
[BoardInfo("VRC4", 21)]
|
||||||
internal class Mapper021 : Board
|
internal class Mapper021 : Board
|
||||||
{
|
{
|
||||||
@ -251,4 +251,3 @@ namespace MyNes.Core
|
|||||||
irq_enable_on_ak = stream.ReadBoolean();
|
irq_enable_on_ak = stream.ReadBoolean();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("VRC2", 22)]
|
[BoardInfo("VRC2", 22)]
|
||||||
internal class Mapper022 : Board
|
internal class Mapper022 : Board
|
||||||
{
|
{
|
||||||
@ -135,4 +135,3 @@ namespace MyNes.Core
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("VRC2", 23)]
|
[BoardInfo("VRC2", 23)]
|
||||||
internal class Mapper023 : Board
|
internal class Mapper023 : Board
|
||||||
{
|
{
|
||||||
@ -160,4 +160,3 @@ namespace MyNes.Core
|
|||||||
security = stream.ReadByte();
|
security = stream.ReadByte();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("VRC6", 24)]
|
[BoardInfo("VRC6", 24)]
|
||||||
[WithExternalSound]
|
[WithExternalSound]
|
||||||
internal class Mapper024 : Board
|
internal class Mapper024 : Board
|
||||||
@ -242,4 +242,3 @@ namespace MyNes.Core
|
|||||||
snd_3.LoadState(ref stream);
|
snd_3.LoadState(ref stream);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("VRC4", 25)]
|
[BoardInfo("VRC4", 25)]
|
||||||
internal class Mapper025 : Board
|
internal class Mapper025 : Board
|
||||||
{
|
{
|
||||||
@ -251,4 +251,3 @@ namespace MyNes.Core
|
|||||||
irq_enable_on_ak = stream.ReadBoolean();
|
irq_enable_on_ak = stream.ReadBoolean();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("VRC6", 26)]
|
[BoardInfo("VRC6", 26)]
|
||||||
[WithExternalSound]
|
[WithExternalSound]
|
||||||
internal class Mapper026 : Board
|
internal class Mapper026 : Board
|
||||||
@ -242,4 +242,3 @@ namespace MyNes.Core
|
|||||||
snd_3.LoadState(ref stream);
|
snd_3.LoadState(ref stream);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("Irem G-101", 32)]
|
[BoardInfo("Irem G-101", 32)]
|
||||||
internal class Mapper032 : Board
|
internal class Mapper032 : Board
|
||||||
{
|
{
|
||||||
@ -106,4 +106,3 @@ namespace MyNes.Core
|
|||||||
prg_reg0 = stream.ReadByte();
|
prg_reg0 = stream.ReadByte();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("Taito TC0190/TC0350", 33)]
|
[BoardInfo("Taito TC0190/TC0350", 33)]
|
||||||
[HassIssues]
|
[HassIssues]
|
||||||
internal class Mapper033 : Board
|
internal class Mapper033 : Board
|
||||||
@ -174,4 +174,3 @@ namespace MyNes.Core
|
|||||||
irq_clear = stream.ReadBoolean();
|
irq_clear = stream.ReadBoolean();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("BxROM/NINA-001", 34)]
|
[BoardInfo("BxROM/NINA-001", 34)]
|
||||||
internal class Mapper034 : Board
|
internal class Mapper034 : Board
|
||||||
{
|
{
|
||||||
@ -47,4 +47,3 @@ namespace MyNes.Core
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("Caltron 6-in-1", 41)]
|
[BoardInfo("Caltron 6-in-1", 41)]
|
||||||
internal class Mapper041 : Board
|
internal class Mapper041 : Board
|
||||||
{
|
{
|
||||||
private bool enableReg = false;
|
private bool enableReg;
|
||||||
|
|
||||||
private int vromReg = 0;
|
private int vromReg;
|
||||||
|
|
||||||
internal override void HardReset()
|
internal override void HardReset()
|
||||||
{
|
{
|
||||||
@ -55,4 +55,3 @@ namespace MyNes.Core
|
|||||||
vromReg = stream.ReadInt32();
|
vromReg = stream.ReadInt32();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,15 +1,15 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("Mario Baby", 42)]
|
[BoardInfo("Mario Baby", 42)]
|
||||||
internal class Mapper042 : Board
|
internal class Mapper042 : Board
|
||||||
{
|
{
|
||||||
private int SRAM_PRG_Page = 0;
|
private int SRAM_PRG_Page;
|
||||||
|
|
||||||
private bool irqEnable = false;
|
private bool irqEnable;
|
||||||
|
|
||||||
private int irqCounter = 0;
|
private int irqCounter;
|
||||||
|
|
||||||
internal override void HardReset()
|
internal override void HardReset()
|
||||||
{
|
{
|
||||||
@ -91,4 +91,3 @@ namespace MyNes.Core
|
|||||||
irqCounter = stream.ReadInt32();
|
irqCounter = stream.ReadInt32();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("7-in-1 MMC3 Port A001h", 44, true, true)]
|
[BoardInfo("7-in-1 MMC3 Port A001h", 44, true, true)]
|
||||||
[HassIssues]
|
[HassIssues]
|
||||||
internal class Mapper044 : Board
|
internal class Mapper044 : Board
|
||||||
@ -232,4 +232,3 @@ namespace MyNes.Core
|
|||||||
chr_or = stream.ReadInt32();
|
chr_or = stream.ReadInt32();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("X-in-1 MMC3 Port 6000hx4", 45, true, true)]
|
[BoardInfo("X-in-1 MMC3 Port 6000hx4", 45, true, true)]
|
||||||
internal class Mapper045 : Board
|
internal class Mapper045 : Board
|
||||||
{
|
{
|
||||||
@ -291,4 +291,3 @@ namespace MyNes.Core
|
|||||||
regCounter = stream.ReadInt32();
|
regCounter = stream.ReadInt32();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("15-in-1 Color Dreams", 46)]
|
[BoardInfo("15-in-1 Color Dreams", 46)]
|
||||||
internal class Mapper046 : Board
|
internal class Mapper046 : Board
|
||||||
{
|
{
|
||||||
@ -39,4 +39,3 @@ namespace MyNes.Core
|
|||||||
chr_reg = stream.ReadInt32();
|
chr_reg = stream.ReadInt32();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("2-in-1 MMC3 Port 6000h", 47, true, true)]
|
[BoardInfo("2-in-1 MMC3 Port 6000h", 47, true, true)]
|
||||||
internal class Mapper047 : Board
|
internal class Mapper047 : Board
|
||||||
{
|
{
|
||||||
@ -255,4 +255,3 @@ namespace MyNes.Core
|
|||||||
irq_enabled = stream.ReadBoolean();
|
irq_enabled = stream.ReadBoolean();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("Taito TC0190/TC0350", 48, true, true)]
|
[BoardInfo("Taito TC0190/TC0350", 48, true, true)]
|
||||||
internal class Mapper048 : Board
|
internal class Mapper048 : Board
|
||||||
{
|
{
|
||||||
@ -169,4 +169,3 @@ namespace MyNes.Core
|
|||||||
irq_clear = stream.ReadBoolean();
|
irq_clear = stream.ReadBoolean();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("4-in-1 MMC3 Port 6xxxh", 49, true, true)]
|
[BoardInfo("4-in-1 MMC3 Port 6xxxh", 49, true, true)]
|
||||||
internal class Mapper049 : Board
|
internal class Mapper049 : Board
|
||||||
{
|
{
|
||||||
@ -269,4 +269,3 @@ namespace MyNes.Core
|
|||||||
prg_32Page = stream.ReadInt32();
|
prg_32Page = stream.ReadInt32();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("FDS-Port - Alt. Levels", 50)]
|
[BoardInfo("FDS-Port - Alt. Levels", 50)]
|
||||||
internal class Mapper050 : Board
|
internal class Mapper050 : Board
|
||||||
{
|
{
|
||||||
@ -68,4 +68,3 @@ namespace MyNes.Core
|
|||||||
irq_enabled = stream.ReadBoolean();
|
irq_enabled = stream.ReadBoolean();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("11-in-1", 51)]
|
[BoardInfo("11-in-1", 51)]
|
||||||
internal class Mapper051 : Board
|
internal class Mapper051 : Board
|
||||||
{
|
{
|
||||||
private int bank = 0;
|
private int bank;
|
||||||
|
|
||||||
private int mode = 1;
|
private int mode = 1;
|
||||||
|
|
||||||
@ -76,4 +76,3 @@ namespace MyNes.Core
|
|||||||
offset = stream.ReadInt32();
|
offset = stream.ReadInt32();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("7-in-1 MMC3 Port 6800h with SRAM", 52, true, true)]
|
[BoardInfo("7-in-1 MMC3 Port 6800h with SRAM", 52, true, true)]
|
||||||
internal class Mapper052 : Board
|
internal class Mapper052 : Board
|
||||||
{
|
{
|
||||||
@ -270,4 +270,3 @@ namespace MyNes.Core
|
|||||||
locked = stream.ReadBoolean();
|
locked = stream.ReadBoolean();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("Unknown", 53)]
|
[BoardInfo("Unknown", 53)]
|
||||||
[HassIssues]
|
[HassIssues]
|
||||||
internal class Mapper053 : Board
|
internal class Mapper053 : Board
|
||||||
@ -55,4 +55,3 @@ namespace MyNes.Core
|
|||||||
epromFirst = stream.ReadBoolean();
|
epromFirst = stream.ReadBoolean();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("Pirate SMB3", 56)]
|
[BoardInfo("Pirate SMB3", 56)]
|
||||||
internal class Mapper056 : Board
|
internal class Mapper056 : Board
|
||||||
{
|
{
|
||||||
private int irqCounter = 0;
|
private int irqCounter;
|
||||||
|
|
||||||
private int irqLatch = 0;
|
private int irqLatch;
|
||||||
|
|
||||||
private bool irqEnabled = false;
|
private bool irqEnabled;
|
||||||
|
|
||||||
private int irqControl = 0;
|
private int irqControl;
|
||||||
|
|
||||||
private int switchControl = 0;
|
private int switchControl;
|
||||||
|
|
||||||
internal override string Issues => MNInterfaceLanguage.IssueMapper56;
|
internal override string Issues => MNInterfaceLanguage.IssueMapper56;
|
||||||
|
|
||||||
@ -94,4 +94,3 @@ namespace MyNes.Core
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("6-in-1 (SuperGK)", 57)]
|
[BoardInfo("6-in-1 (SuperGK)", 57)]
|
||||||
internal class Mapper057 : Board
|
internal class Mapper057 : Board
|
||||||
{
|
{
|
||||||
@ -52,4 +52,3 @@ namespace MyNes.Core
|
|||||||
chr_hhh = stream.ReadInt32();
|
chr_hhh = stream.ReadInt32();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("68-in-1 (Game Star)", 58)]
|
[BoardInfo("68-in-1 (Game Star)", 58)]
|
||||||
[HassIssues]
|
[HassIssues]
|
||||||
internal class Mapper058 : Board
|
internal class Mapper058 : Board
|
||||||
@ -21,4 +21,3 @@ namespace MyNes.Core
|
|||||||
Switch01KNMTFromMirroring(((address & 0x80) == 128) ? Mirroring.Horz : Mirroring.Vert);
|
Switch01KNMTFromMirroring(((address & 0x80) == 128) ? Mirroring.Horz : Mirroring.Vert);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,14 +1,14 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("Unknown", 60)]
|
[BoardInfo("Unknown", 60)]
|
||||||
[HassIssues]
|
[HassIssues]
|
||||||
internal class Mapper060 : Board
|
internal class Mapper060 : Board
|
||||||
{
|
{
|
||||||
private int latch = 0;
|
private int latch;
|
||||||
|
|
||||||
private byte menu = 0;
|
private byte menu;
|
||||||
|
|
||||||
internal override string Issues => MNInterfaceLanguage.IssueMapper60;
|
internal override string Issues => MNInterfaceLanguage.IssueMapper60;
|
||||||
|
|
||||||
@ -64,4 +64,3 @@ namespace MyNes.Core
|
|||||||
menu = stream.ReadByte();
|
menu = stream.ReadByte();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("20-in-1", 61)]
|
[BoardInfo("20-in-1", 61)]
|
||||||
internal class Mapper061 : Board
|
internal class Mapper061 : Board
|
||||||
{
|
{
|
||||||
@ -17,4 +17,3 @@ namespace MyNes.Core
|
|||||||
Switch01KNMTFromMirroring(((address & 0x80) == 128) ? Mirroring.Horz : Mirroring.Vert);
|
Switch01KNMTFromMirroring(((address & 0x80) == 128) ? Mirroring.Horz : Mirroring.Vert);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("Super 700-in-1", 62)]
|
[BoardInfo("Super 700-in-1", 62)]
|
||||||
internal class Mapper062 : Board
|
internal class Mapper062 : Board
|
||||||
{
|
{
|
||||||
@ -21,4 +21,3 @@ namespace MyNes.Core
|
|||||||
Switch01KNMTFromMirroring(((address & 0x80) == 128) ? Mirroring.Horz : Mirroring.Vert);
|
Switch01KNMTFromMirroring(((address & 0x80) == 128) ? Mirroring.Horz : Mirroring.Vert);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("Tengen RAMBO-1", 64, true, true)]
|
[BoardInfo("Tengen RAMBO-1", 64, true, true)]
|
||||||
internal class Mapper064 : Board
|
internal class Mapper064 : Board
|
||||||
{
|
{
|
||||||
@ -255,4 +255,3 @@ namespace MyNes.Core
|
|||||||
irq_mode = stream.ReadBoolean();
|
irq_mode = stream.ReadBoolean();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("Irem H-3001", 65)]
|
[BoardInfo("Irem H-3001", 65)]
|
||||||
internal class Mapper065 : Board
|
internal class Mapper065 : Board
|
||||||
{
|
{
|
||||||
@ -91,4 +91,3 @@ namespace MyNes.Core
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("GxROM", 66)]
|
[BoardInfo("GxROM", 66)]
|
||||||
internal class Mapper066 : Board
|
internal class Mapper066 : Board
|
||||||
{
|
{
|
||||||
@ -9,4 +9,3 @@ namespace MyNes.Core
|
|||||||
Switch08KCHR(data & 3);
|
Switch08KCHR(data & 3);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("Sunsoft 3", 67)]
|
[BoardInfo("Sunsoft 3", 67)]
|
||||||
internal class Mapper067 : Board
|
internal class Mapper067 : Board
|
||||||
{
|
{
|
||||||
@ -105,4 +105,3 @@ namespace MyNes.Core
|
|||||||
odd = stream.ReadBoolean();
|
odd = stream.ReadBoolean();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("Sunsoft 4", 68)]
|
[BoardInfo("Sunsoft 4", 68)]
|
||||||
internal class Mapper068 : Board
|
internal class Mapper068 : Board
|
||||||
{
|
{
|
||||||
@ -109,4 +109,3 @@ namespace MyNes.Core
|
|||||||
temp = stream.ReadInt32();
|
temp = stream.ReadInt32();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("FME-7/Sunsoft 5B", 69)]
|
[BoardInfo("FME-7/Sunsoft 5B", 69)]
|
||||||
[WithExternalSound]
|
[WithExternalSound]
|
||||||
internal class Mapper069 : Board
|
internal class Mapper069 : Board
|
||||||
@ -256,4 +256,3 @@ namespace MyNes.Core
|
|||||||
snd_3.LoadState(ref stream);
|
snd_3.LoadState(ref stream);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("Bandai", 70)]
|
[BoardInfo("Bandai", 70)]
|
||||||
internal class Mapper070 : Board
|
internal class Mapper070 : Board
|
||||||
{
|
{
|
||||||
@ -15,4 +15,3 @@ namespace MyNes.Core
|
|||||||
Switch08KCHR(data & 0xF);
|
Switch08KCHR(data & 0xF);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("Camerica", 71)]
|
[BoardInfo("Camerica", 71)]
|
||||||
internal class Mapper071 : Board
|
internal class Mapper071 : Board
|
||||||
{
|
{
|
||||||
@ -27,4 +27,3 @@ namespace MyNes.Core
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace MyNes.Core
|
namespace MyNes.Core;
|
||||||
{
|
|
||||||
[BoardInfo("Jaleco Early Mapper 0", 72)]
|
[BoardInfo("Jaleco Early Mapper 0", 72)]
|
||||||
internal class Mapper072 : Board
|
internal class Mapper072 : Board
|
||||||
{
|
{
|
||||||
@ -50,4 +50,3 @@ namespace MyNes.Core
|
|||||||
prg_reg = stream.ReadInt32();
|
prg_reg = stream.ReadInt32();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user