Move CPUs from Emulation.Common to Emulation.Cores

This commit is contained in:
adelikat 2014-01-22 01:14:36 +00:00
parent 2865c56179
commit 7393f132ab
64 changed files with 84 additions and 84 deletions

View File

@ -45,43 +45,6 @@
<Compile Include="..\VersionInfo.cs">
<Link>VersionInfo.cs</Link>
</Compile>
<Compile Include="CPUs\68000\Diassembler.cs" />
<Compile Include="CPUs\68000\Instructions\BitArithemetic.cs" />
<Compile Include="CPUs\68000\Instructions\DataMovement.cs" />
<Compile Include="CPUs\68000\Instructions\IntegerMath.cs" />
<Compile Include="CPUs\68000\Instructions\ProgramFlow.cs" />
<Compile Include="CPUs\68000\Instructions\Supervisor.cs" />
<Compile Include="CPUs\68000\MC68000.cs" />
<Compile Include="CPUs\68000\Memory.cs" />
<Compile Include="CPUs\68000\OpcodeTable.cs" />
<Compile Include="CPUs\68000\Tables.cs" />
<Compile Include="CPUs\CP1610\CP1610.cs" />
<Compile Include="CPUs\CP1610\Disassembler.cs" />
<Compile Include="CPUs\CP1610\Execute.cs" />
<Compile Include="CPUs\HuC6280\Disassembler.cs" />
<Compile Include="CPUs\HuC6280\Execute.cs" />
<Compile Include="CPUs\HuC6280\HuC6280.cs" />
<Compile Include="CPUs\MOS 6502X\Disassembler.cs" />
<Compile Include="CPUs\MOS 6502X\Execute.cs" />
<Compile Include="CPUs\MOS 6502X\MOS6502X.cs" />
<Compile Include="CPUs\MOS 6502X\MOS6502XDouble.cs" />
<Compile Include="CPUs\MOS 6502X\MOS6502XNative.cs" />
<Compile Include="CPUs\x86\Disassembler.cs" />
<Compile Include="CPUs\x86\Execute.cs" />
<Compile Include="CPUs\x86\Timing.cs" />
<Compile Include="CPUs\x86\x86.cs" />
<Compile Include="CPUs\Z80-GB\Execute.cs" />
<Compile Include="CPUs\Z80-GB\Interrupts.cs" />
<Compile Include="CPUs\Z80-GB\NewDisassembler.cs" />
<Compile Include="CPUs\Z80-GB\Registers.cs" />
<Compile Include="CPUs\Z80-GB\Tables.cs" />
<Compile Include="CPUs\Z80-GB\Z80.cs" />
<Compile Include="CPUs\Z80\Disassembler.cs" />
<Compile Include="CPUs\Z80\Execute.cs" />
<Compile Include="CPUs\Z80\Interrupts.cs" />
<Compile Include="CPUs\Z80\Registers.cs" />
<Compile Include="CPUs\Z80\Tables.cs" />
<Compile Include="CPUs\Z80\Z80A.cs" />
<Compile Include="Database\CRC32.cs" />
<Compile Include="Database\Database.cs" />
<Compile Include="Database\FirmwareDatabase.cs" />

View File

@ -437,6 +437,43 @@
<Compile Include="Consoles\Sony\PSP\PSP.cs" />
<Compile Include="Consoles\Sony\PSX\LibMednahawkDll.cs" />
<Compile Include="Consoles\Sony\PSX\Octoshock.cs" />
<Compile Include="CPUs\68000\Diassembler.cs" />
<Compile Include="CPUs\68000\Instructions\BitArithemetic.cs" />
<Compile Include="CPUs\68000\Instructions\DataMovement.cs" />
<Compile Include="CPUs\68000\Instructions\IntegerMath.cs" />
<Compile Include="CPUs\68000\Instructions\ProgramFlow.cs" />
<Compile Include="CPUs\68000\Instructions\Supervisor.cs" />
<Compile Include="CPUs\68000\MC68000.cs" />
<Compile Include="CPUs\68000\Memory.cs" />
<Compile Include="CPUs\68000\OpcodeTable.cs" />
<Compile Include="CPUs\68000\Tables.cs" />
<Compile Include="CPUs\CP1610\CP1610.cs" />
<Compile Include="CPUs\CP1610\Disassembler.cs" />
<Compile Include="CPUs\CP1610\Execute.cs" />
<Compile Include="CPUs\HuC6280\Disassembler.cs" />
<Compile Include="CPUs\HuC6280\Execute.cs" />
<Compile Include="CPUs\HuC6280\HuC6280.cs" />
<Compile Include="CPUs\MOS 6502X\Disassembler.cs" />
<Compile Include="CPUs\MOS 6502X\Execute.cs" />
<Compile Include="CPUs\MOS 6502X\MOS6502X.cs" />
<Compile Include="CPUs\MOS 6502X\MOS6502XDouble.cs" />
<Compile Include="CPUs\MOS 6502X\MOS6502XNative.cs" />
<Compile Include="CPUs\x86\Disassembler.cs" />
<Compile Include="CPUs\x86\Execute.cs" />
<Compile Include="CPUs\x86\Timing.cs" />
<Compile Include="CPUs\x86\x86.cs" />
<Compile Include="CPUs\Z80-GB\Execute.cs" />
<Compile Include="CPUs\Z80-GB\Interrupts.cs" />
<Compile Include="CPUs\Z80-GB\NewDisassembler.cs" />
<Compile Include="CPUs\Z80-GB\Registers.cs" />
<Compile Include="CPUs\Z80-GB\Tables.cs" />
<Compile Include="CPUs\Z80-GB\Z80.cs" />
<Compile Include="CPUs\Z80\Disassembler.cs" />
<Compile Include="CPUs\Z80\Execute.cs" />
<Compile Include="CPUs\Z80\Interrupts.cs" />
<Compile Include="CPUs\Z80\Registers.cs" />
<Compile Include="CPUs\Z80\Tables.cs" />
<Compile Include="CPUs\Z80\Z80A.cs" />
<Compile Include="LibRetro.cs" />
<Compile Include="LibRetroEmulator.cs" />
<Compile Include="Properties\svnrev.cs" />

View File

@ -1,6 +1,6 @@
using System.Text;
namespace BizHawk.Emulation.Common.Components.M68000
namespace BizHawk.Emulation.Cores.Components.M68000
{
public sealed class DisassemblyInfo
{

View File

@ -1,6 +1,6 @@
using System;
namespace BizHawk.Emulation.Common.Components.M68000
namespace BizHawk.Emulation.Cores.Components.M68000
{
partial class MC68000
{

View File

@ -1,7 +1,7 @@
using System;
using System.Text;
namespace BizHawk.Emulation.Common.Components.M68000
namespace BizHawk.Emulation.Cores.Components.M68000
{
partial class MC68000
{

View File

@ -1,6 +1,6 @@
using System;
namespace BizHawk.Emulation.Common.Components.M68000
namespace BizHawk.Emulation.Cores.Components.M68000
{
partial class MC68000
{

View File

@ -1,6 +1,6 @@
using System;
namespace BizHawk.Emulation.Common.Components.M68000
namespace BizHawk.Emulation.Cores.Components.M68000
{
partial class MC68000
{

View File

@ -1,6 +1,6 @@
using System;
namespace BizHawk.Emulation.Common.Components.M68000
namespace BizHawk.Emulation.Cores.Components.M68000
{
partial class MC68000
{

View File

@ -3,7 +3,7 @@ using System.Runtime.InteropServices;
using System.IO;
using System.Globalization;
namespace BizHawk.Emulation.Common.Components.M68000
namespace BizHawk.Emulation.Cores.Components.M68000
{
public sealed partial class MC68000
{

View File

@ -1,6 +1,6 @@
using System;
namespace BizHawk.Emulation.Common.Components.M68000
namespace BizHawk.Emulation.Cores.Components.M68000
{
partial class MC68000
{

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
using BizHawk.Common;
namespace BizHawk.Emulation.Common.Components.M68000
namespace BizHawk.Emulation.Cores.Components.M68000
{
partial class MC68000
{

View File

@ -1,4 +1,4 @@
namespace BizHawk.Emulation.Common.Components.M68000
namespace BizHawk.Emulation.Cores.Components.M68000
{
partial class MC68000
{

View File

@ -1,7 +1,7 @@
using System;
using System.IO;
namespace BizHawk.Emulation.Common.Components.CP1610
namespace BizHawk.Emulation.Cores.Components.CP1610
{
public sealed partial class CP1610
{

View File

@ -1,4 +1,4 @@
namespace BizHawk.Emulation.Common.Components.CP1610
namespace BizHawk.Emulation.Cores.Components.CP1610
{
public sealed partial class CP1610
{

View File

@ -1,6 +1,6 @@
using System;
namespace BizHawk.Emulation.Common.Components.CP1610
namespace BizHawk.Emulation.Cores.Components.CP1610
{
public sealed partial class CP1610
{

View File

@ -1,4 +1,4 @@
namespace BizHawk.Emulation.Common.Components.H6280
namespace BizHawk.Emulation.Cores.Components.H6280
// Do not modify this file directly! This is GENERATED code.
// Please open the CpuCoreGenerator solution and make your modifications there.

View File

@ -3,7 +3,7 @@ using System;
// Do not modify this file directly! This is GENERATED code.
// Please open the CpuCoreGenerator solution and make your modifications there.
namespace BizHawk.Emulation.Common.Components.H6280
namespace BizHawk.Emulation.Cores.Components.H6280
{
public partial class HuC6280
{

View File

@ -4,7 +4,7 @@ using System.IO;
using BizHawk.Common;
namespace BizHawk.Emulation.Common.Components.H6280
namespace BizHawk.Emulation.Cores.Components.H6280
{
public sealed partial class HuC6280
{

View File

@ -1,4 +1,4 @@
namespace BizHawk.Emulation.Common.Components.M6502
namespace BizHawk.Emulation.Cores.Components.M6502
{
public partial class MOS6502X
{

View File

@ -3,7 +3,7 @@
using System;
using BizHawk.Common;
namespace BizHawk.Emulation.Common.Components.M6502
namespace BizHawk.Emulation.Cores.Components.M6502
{
public partial class MOS6502X
{

View File

@ -3,7 +3,7 @@ using System.IO;
using BizHawk.Common;
namespace BizHawk.Emulation.Common.Components.M6502
namespace BizHawk.Emulation.Cores.Components.M6502
{
public sealed partial class MOS6502X
{

View File

@ -4,7 +4,7 @@ using System.IO;
using BizHawk.Common;
namespace BizHawk.Emulation.Common.Components.M6502
namespace BizHawk.Emulation.Cores.Components.M6502
{
/// <summary>
/// maintains a managed 6502X and an unmanaged 6502X, running them alongside and ensuring consistency

View File

@ -3,7 +3,7 @@ using System.Runtime.InteropServices;
using BizHawk.Common;
namespace BizHawk.Emulation.Common.Components.M6502
namespace BizHawk.Emulation.Cores.Components.M6502
{
public static class MOS6502X_DLL
{

View File

@ -12,7 +12,7 @@
using System;
namespace BizHawk.Emulation.Common.Components.Z80
namespace BizHawk.Emulation.Cores.Components.Z80
{
public class Disassembler
{

View File

@ -1,6 +1,6 @@
using System;
namespace BizHawk.Emulation.Common.Components.Z80
namespace BizHawk.Emulation.Cores.Components.Z80
{
public partial class Z80A
{

View File

@ -1,6 +1,6 @@
using System;
namespace BizHawk.Emulation.Common.Components.Z80
namespace BizHawk.Emulation.Cores.Components.Z80
{
public partial class Z80A
{

View File

@ -1,7 +1,7 @@
using System.Runtime.InteropServices;
using System;
namespace BizHawk.Emulation.Common.Components.Z80
namespace BizHawk.Emulation.Cores.Components.Z80
{
public partial class Z80A
{

View File

@ -1,4 +1,4 @@
namespace BizHawk.Emulation.Common.Components.Z80
namespace BizHawk.Emulation.Cores.Components.Z80
{
public partial class Z80A
{

View File

@ -5,7 +5,7 @@ using System.IO;
// This Z80 emulator is a modified version of Ben Ryves 'Brazil' emulator.
// It is MIT licensed.
namespace BizHawk.Emulation.Common.Components.Z80
namespace BizHawk.Emulation.Cores.Components.Z80
{
/// <summary>
/// ZiLOG Z80A CPU Emulator

View File

@ -1,6 +1,6 @@
using System.Text;
namespace BizHawk.Emulation.Common.Components.x86
namespace BizHawk.Emulation.Cores.Components.x86
{
public class DisassemblyInfo
{

View File

@ -1,6 +1,6 @@
using System;
namespace BizHawk.Emulation.Common.Components.x86
namespace BizHawk.Emulation.Cores.Components.x86
{
public partial class x86<CpuType> where CpuType : struct, x86CpuType
{

View File

@ -1,4 +1,4 @@
namespace BizHawk.Emulation.Common.Components.x86
namespace BizHawk.Emulation.Cores.Components.x86
{
public partial class x86<CpuType> where CpuType : struct, x86CpuType
{

View File

@ -1,7 +1,7 @@
using System;
using System.Runtime.InteropServices;
namespace BizHawk.Emulation.Common.Components.x86
namespace BizHawk.Emulation.Cores.Components.x86
{
public interface x86CpuType { };
public struct Intel8086 : x86CpuType { };

View File

@ -5,7 +5,7 @@ using System.Collections.Generic;
using BizHawk.Common;
using BizHawk.Emulation.Common;
using BizHawk.Emulation.Common.Components.Z80;
using BizHawk.Emulation.Cores.Components.Z80;
//http://www.ticalc.org/pub/text/calcinfo/

View File

@ -1,5 +1,5 @@
using System;
using BizHawk.Emulation.Common.Components.M6502;
using BizHawk.Emulation.Cores.Components.M6502;
#if false

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using BizHawk.Emulation.Common.Components.M6502;
using BizHawk.Emulation.Cores.Components.M6502;
namespace BizHawk.Emulation.Cores.Computers.Commodore64.Experimental
{

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Runtime.InteropServices;
using BizHawk.Common;
using BizHawk.Emulation.Common.Components.M6502;
using BizHawk.Emulation.Cores.Components.M6502;
namespace BizHawk.Emulation.Cores.Computers.Commodore64
{

View File

@ -2,7 +2,7 @@
using BizHawk.Common;
using BizHawk.Emulation.Common;
using BizHawk.Emulation.Common.Components.M6502;
using BizHawk.Emulation.Cores.Components.M6502;
namespace BizHawk.Emulation.Cores.Atari.Atari2600

View File

@ -5,7 +5,7 @@ using System.IO;
using BizHawk.Common;
using BizHawk.Emulation.Common;
using BizHawk.Emulation.Common.Components;
using BizHawk.Emulation.Common.Components.Z80;
using BizHawk.Emulation.Cores.Components.Z80;
namespace BizHawk.Emulation.Cores.ColecoVision
{

View File

@ -4,7 +4,7 @@ using System.IO;
using BizHawk.Common;
using BizHawk.Emulation.Common;
using BizHawk.Emulation.Common.Components.Z80;
using BizHawk.Emulation.Cores.Components.Z80;
namespace BizHawk.Emulation.Cores.ColecoVision
{

View File

@ -3,7 +3,7 @@ using System.IO;
using System.Collections.Generic;
using BizHawk.Emulation.Common;
using BizHawk.Emulation.Common.Components.CP1610;
using BizHawk.Emulation.Cores.Components.CP1610;
namespace BizHawk.Emulation.Cores.Intellivision
{

View File

@ -4,7 +4,7 @@ using System.Runtime.CompilerServices;
using BizHawk.Common;
using BizHawk.Emulation.Common;
using BizHawk.Emulation.Common.Components.M6502;
using BizHawk.Emulation.Cores.Components.M6502;
#pragma warning disable 162

View File

@ -6,7 +6,7 @@ using System.IO;
using BizHawk.Common;
using BizHawk.Emulation.Common;
using BizHawk.Emulation.Common.Components;
using BizHawk.Emulation.Common.Components.H6280;
using BizHawk.Emulation.Cores.Components.H6280;
using BizHawk.Emulation.DiscSystem;
namespace BizHawk.Emulation.Cores.PCEngine

View File

@ -4,7 +4,7 @@ using System.IO;
using BizHawk.Common;
using BizHawk.Emulation.Common;
using BizHawk.Emulation.Common.Components.H6280;
using BizHawk.Emulation.Cores.Components.H6280;
namespace BizHawk.Emulation.Cores.PCEngine
{

View File

@ -3,7 +3,7 @@ using System.IO;
using BizHawk.Common;
using BizHawk.Emulation.Common;
using BizHawk.Emulation.Common.Components.H6280;
using BizHawk.Emulation.Cores.Components.H6280;
namespace BizHawk.Emulation.Cores.PCEngine
{

View File

@ -8,8 +8,8 @@ using System.Runtime.InteropServices;
using BizHawk.Common;
using BizHawk.Emulation.Common;
using BizHawk.Emulation.Common.Components;
using BizHawk.Emulation.Common.Components.M68000;
using BizHawk.Emulation.Common.Components.Z80;
using BizHawk.Emulation.Cores.Components.M68000;
using BizHawk.Emulation.Cores.Components.Z80;
using Native68000;
namespace BizHawk.Emulation.Cores.Sega.Genesis

View File

@ -6,7 +6,7 @@ using System.IO;
using BizHawk.Common;
using BizHawk.Emulation.Common;
using BizHawk.Emulation.Common.Components;
using BizHawk.Emulation.Common.Components.Z80;
using BizHawk.Emulation.Cores.Components.Z80;
/*****************************************************

View File

@ -4,7 +4,7 @@ using System.IO;
using BizHawk.Common;
using BizHawk.Emulation.Common;
using BizHawk.Emulation.Common.Components.Z80;
using BizHawk.Emulation.Cores.Components.Z80;
namespace BizHawk.Emulation.Cores.Sega.MasterSystem