master
Nabile Rahmani 2017-12-19 20:24:14 +01:00
parent b2ea1dbdb6
commit 71904ce63f
5 changed files with 9 additions and 9 deletions

View File

@ -42,9 +42,9 @@
<Compile Include="RCP\AI\RealityCoprocessor.AudioInterface.cs" />
<Compile Include="RCP\MI\RealityCoprocessor.MIPSInterface.cs" />
<Compile Include="RCP\MI\RealityCoprocessor.MIPSInterface.InitModeRegister.cs" />
<Compile Include="RCP\PI\RealityCoprocessor.PeripheralInterface.cs" />
<Compile Include="RCP\PI\RealityCoprocessor.PeripheralInterface.Domain.cs" />
<Compile Include="RCP\PI\RealityCoprocessor.PeripheralInterface.StatusRegister.cs" />
<Compile Include="RCP\PI\RealityCoprocessor.ParallelInterface.cs" />
<Compile Include="RCP\PI\RealityCoprocessor.ParallelInterface.Domain.cs" />
<Compile Include="RCP\PI\RealityCoprocessor.ParallelInterface.StatusRegister.cs" />
<Compile Include="RCP\RI\RealityCoprocessor.RDRAMInterface.cs" />
<Compile Include="RCP\RI\RealityCoprocessor.RDRAMInterface.ConfigRegister.cs" />
<Compile Include="RCP\RI\RealityCoprocessor.RDRAMInterface.ModeRegister.cs" />

View File

@ -2,7 +2,7 @@
{
public partial class RealityCoprocessor
{
public partial class PeripheralInterface
public partial class ParallelInterface
{
public class Domain
{

View File

@ -4,7 +4,7 @@ namespace DotN64.RCP
{
public partial class RealityCoprocessor
{
public partial class PeripheralInterface
public partial class ParallelInterface
{
[Flags]
public enum StatusRegister

View File

@ -7,7 +7,7 @@ namespace DotN64.RCP
public partial class RealityCoprocessor
{
public partial class PeripheralInterface : Interface
public partial class ParallelInterface : Interface
{
#region Properties
public StatusRegister Status { get; set; }
@ -35,7 +35,7 @@ namespace DotN64.RCP
#endregion
#region Constructors
public PeripheralInterface(RealityCoprocessor rcp)
public ParallelInterface(RealityCoprocessor rcp)
: base(rcp)
{
MemoryMaps = new[]

View File

@ -9,7 +9,7 @@
public DisplayProcessor DP { get; } = new DisplayProcessor();
public PeripheralInterface PI { get; }
public ParallelInterface PI { get; }
public SerialInterface SI { get; }
@ -26,7 +26,7 @@
public RealityCoprocessor(Nintendo64 nintendo64)
{
Nintendo64 = nintendo64;
PI = new PeripheralInterface(this);
PI = new ParallelInterface(this);
SI = new SerialInterface(this);
AI = new AudioInterface(this);
VI = new VideoInterface(this);