Update author/source metadata for several cores where it's missing
see #4168
This commit is contained in:
parent
d8508acb69
commit
fb9a90d470
|
@ -6,7 +6,9 @@ using BizHawk.Emulation.Common;
|
|||
|
||||
namespace BizHawk.Emulation.Cores.Computers.MSX
|
||||
{
|
||||
[Core(CoreNames.MSXHawk, "", isReleased: true)]
|
||||
[Core(
|
||||
name: CoreNames.MSXHawk,
|
||||
author: "alyosha")]
|
||||
public partial class MSX : IEmulator, IVideoProvider, ISoundProvider, ISaveRam, IInputPollable, IRegionable, ISettable<MSX.MSXSettings, MSX.MSXSyncSettings>
|
||||
{
|
||||
[CoreConstructor(VSystemID.Raw.MSX)]
|
||||
|
|
|
@ -5,7 +5,9 @@ using BizHawk.Common.NumberExtensions;
|
|||
|
||||
namespace BizHawk.Emulation.Cores.Atari.A7800Hawk
|
||||
{
|
||||
[Core(CoreNames.A7800Hawk, "")]
|
||||
[Core(
|
||||
name: CoreNames.A7800Hawk,
|
||||
author: "alyosha and BizHawk contributors")]
|
||||
[ServiceNotApplicable(typeof(ISettable<,>))]
|
||||
public partial class A7800Hawk : IEmulator, ISaveRam, IDebuggable, IInputPollable,
|
||||
IRegionable, IBoardInfo, ISettable<object, A7800Hawk.A7800SyncSettings>
|
||||
|
|
|
@ -4,7 +4,9 @@ using BizHawk.Emulation.Cores.Components.MC6809;
|
|||
|
||||
namespace BizHawk.Emulation.Cores.Consoles.Vectrex
|
||||
{
|
||||
[Core(CoreNames.VectrexHawk, "")]
|
||||
[Core(
|
||||
name: CoreNames.VectrexHawk,
|
||||
author: "alyosha")]
|
||||
public partial class VectrexHawk : IEmulator, ISaveRam, IDebuggable, IInputPollable, IRegionable,
|
||||
ISettable<object, VectrexHawk.VectrexSyncSettings>
|
||||
{
|
||||
|
|
|
@ -4,7 +4,9 @@ using BizHawk.Emulation.Cores.Components.I8048;
|
|||
|
||||
namespace BizHawk.Emulation.Cores.Consoles.O2Hawk
|
||||
{
|
||||
[Core(CoreNames.O2Hawk, "")]
|
||||
[Core(
|
||||
name: CoreNames.O2Hawk,
|
||||
author: "alyosha")]
|
||||
public partial class O2Hawk : IEmulator, ISaveRam, IDebuggable, IInputPollable, IRegionable, ISettable<O2Hawk.O2Settings, O2Hawk.O2SyncSettings>, IBoardInfo
|
||||
{
|
||||
// memory domains
|
||||
|
|
|
@ -12,7 +12,12 @@ using BizHawk.Emulation.Common;
|
|||
|
||||
namespace BizHawk.Emulation.Cores.Consoles.Nintendo.N3DS
|
||||
{
|
||||
[PortedCore(CoreNames.Encore, "", "nightly-2104", "https://github.com/CasualPokePlayer/encore", singleInstance: true)]
|
||||
[PortedCore(
|
||||
name: CoreNames.Encore,
|
||||
author: "Tropic Haze and Citra contributors; port by CasualPokePlayer",
|
||||
portedVersion: "nightly-2104",
|
||||
portedUrl: "https://github.com/CasualPokePlayer/encore",
|
||||
singleInstance: true)]
|
||||
[ServiceNotApplicable(typeof(IRegionable))]
|
||||
public partial class Encore : IRomInfo
|
||||
{
|
||||
|
|
|
@ -19,7 +19,9 @@ using BizHawk.Common.ReflectionExtensions;
|
|||
|
||||
namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
|
||||
{
|
||||
[Core(CoreNames.GbHawk, "")]
|
||||
[Core(
|
||||
name: CoreNames.GbHawk,
|
||||
author: "alyosha and BizHawk contributors")]
|
||||
public partial class GBHawk : IEmulator, ISaveRam, IDebuggable, IInputPollable, IRegionable, IGameboyCommon,
|
||||
ISettable<GBHawk.GBSettings, GBHawk.GBSyncSettings>
|
||||
{
|
||||
|
|
|
@ -6,7 +6,12 @@ using BizHawk.Emulation.Cores.Nintendo.N64.NativeApi;
|
|||
|
||||
namespace BizHawk.Emulation.Cores.Nintendo.N64
|
||||
{
|
||||
[PortedCore(CoreNames.Mupen64Plus, "", "2.0", "https://code.google.com/p/mupen64plus/", singleInstance: true)]
|
||||
[PortedCore(
|
||||
name: CoreNames.Mupen64Plus,
|
||||
author: "(for core:) Mupen64 contributors and Mupen64Plus contributors; port by micro500 and BizHawk contributors",
|
||||
portedVersion: "2.0",
|
||||
portedUrl: "https://github.com/mupen64plus/mupen64plus-core",
|
||||
singleInstance: true)]
|
||||
public partial class N64 : IEmulator, ISaveRam, IDebuggable, IStatable, IInputPollable, IDisassemblable, IRegionable,
|
||||
ISettable<N64Settings, N64SyncSettings>
|
||||
{
|
||||
|
|
|
@ -7,7 +7,11 @@ using BizHawk.Emulation.Cores.Waterbox;
|
|||
|
||||
namespace BizHawk.Emulation.Cores.Nintendo.SNES9X
|
||||
{
|
||||
[PortedCore(CoreNames.Snes9X, "", "e49165c", "https://github.com/snes9xgit/snes9x")]
|
||||
[PortedCore(
|
||||
name: CoreNames.Snes9X,
|
||||
author: "Snes9x contributors; port by Morilli",
|
||||
portedVersion: "e49165c",
|
||||
portedUrl: "https://github.com/snes9xgit/snes9x")]
|
||||
public class Snes9x : WaterboxCore,
|
||||
ISettable<Snes9x.Settings, Snes9x.SyncSettings>, IRegionable
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue