32 lines
810 B
C#
32 lines
810 B
C#
![]() |
using BizHawk.Emulation.Cores.Components.Z80A;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace BizHawk.Emulation.Cores.Computers.SinclairSpectrum
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// The +2 is almost identical to the 128k from an emulation point of view
|
|||
|
/// There are just a few small changes in the ROMs
|
|||
|
/// </summary>
|
|||
|
public partial class ZX128Plus2 : ZX128
|
|||
|
{
|
|||
|
#region Construction
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Main constructor
|
|||
|
/// </summary>
|
|||
|
/// <param name="spectrum"></param>
|
|||
|
/// <param name="cpu"></param>
|
|||
|
public ZX128Plus2(ZXSpectrum spectrum, Z80A cpu, byte[] file)
|
|||
|
: base(spectrum, cpu, file)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
}
|
|||
|
}
|