Better document genericisation of virtual CPU classes
fixesf3ea6fe02
(#1189),84f4d6ae2
, and666cb3939
This commit is contained in:
parent
3b1641510e
commit
fa56f2abef
|
@ -29,6 +29,11 @@ namespace BizHawk.Emulation.Cores.Components.FairchildF8
|
|||
///
|
||||
/// Note: Programmable timer and interrupt logic from the F3851 is not currently emulated
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// this type parameter might look useless—and it is—but after monomorphisation,
|
||||
/// this way happens to perform better than the alternative
|
||||
/// </remarks>
|
||||
/// <seealso cref="IF3850Link"/>
|
||||
public sealed partial class F3850<TLink> where TLink : IF3850Link
|
||||
{
|
||||
// operations that can take place in an instruction
|
||||
|
|
|
@ -5,6 +5,11 @@ using BizHawk.Emulation.Common;
|
|||
|
||||
namespace BizHawk.Emulation.Cores.Components.M6502
|
||||
{
|
||||
/// <remarks>
|
||||
/// this type parameter might look useless—and it is—but after monomorphisation,
|
||||
/// this way happens to perform better than the alternative
|
||||
/// </remarks>
|
||||
/// <seealso cref="IMOS6502XLink"/>
|
||||
public sealed partial class MOS6502X<TLink> where TLink : IMOS6502XLink
|
||||
{
|
||||
private readonly TLink _link;
|
||||
|
|
|
@ -7,6 +7,11 @@ using BizHawk.Common.NumberExtensions;
|
|||
// Z80A CPU
|
||||
namespace BizHawk.Emulation.Cores.Components.Z80A
|
||||
{
|
||||
/// <remarks>
|
||||
/// this type parameter might look useless—and it is—but after monomorphisation,
|
||||
/// this way happens to perform better than the alternative
|
||||
/// </remarks>
|
||||
/// <seealso cref="IZ80ALink"/>
|
||||
public sealed partial class Z80A<TLink> where TLink : IZ80ALink
|
||||
{
|
||||
// operations that can take place in an instruction
|
||||
|
|
Loading…
Reference in New Issue