Skip to content

Commit 4255127

Browse files
committed
Copy metadata to linked and subframe cores from base core
1 parent bfa2001 commit 4255127

File tree

7 files changed

+24
-7
lines changed

7 files changed

+24
-7
lines changed

src/BizHawk.Emulation.Cores/Consoles/Nintendo/BSNES/SubBsnesCore.cs

+5-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@
44

55
namespace BizHawk.Emulation.Cores.Nintendo.BSNES
66
{
7-
[PortedCore(CoreNames.SubBsnes115, "")]
7+
[PortedCore(
8+
name: CoreNames.SubBsnes115,
9+
author: "bsnes team",
10+
portedVersion: "v115+",
11+
portedUrl: "https://github.com/bsnes-emu/bsnes")]
812
public class SubBsnesCore : IEmulator, ICycleTiming
913
{
1014
[CoreConstructor(VSystemID.Raw.Satellaview)]

src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawkLink/GBHawkLink.cs

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44

55
namespace BizHawk.Emulation.Cores.Nintendo.GBHawkLink
66
{
7-
[Core(CoreNames.GBHawkLink, "")]
7+
[Core(
8+
name: CoreNames.GBHawkLink,
9+
author: "alyosha and BizHawk contributors")]
810
public partial class GBHawkLink : IEmulator, ISaveRam, IDebuggable, IStatable, IInputPollable, IRegionable, ILinkable,
911
ISettable<GBHawkLink.GBLinkSettings, GBHawkLink.GBLinkSyncSettings>,
1012
ILinkedGameBoyCommon

src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawkLink3x/GBHawkLink3x.cs

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44

55
namespace BizHawk.Emulation.Cores.Nintendo.GBHawkLink3x
66
{
7-
[Core(CoreNames.GBHawkLink3x, "")]
7+
[Core(
8+
name: CoreNames.GBHawkLink3x,
9+
author: "alyosha and BizHawk contributors")]
810
public partial class GBHawkLink3x : IEmulator, ISaveRam, IDebuggable, IStatable, IInputPollable, IRegionable,
911
ISettable<GBHawkLink3x.GBLink3xSettings, GBHawkLink3x.GBLink3xSyncSettings>,
1012
ILinkedGameBoyCommon

src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawkLink4x/GBHawkLink4x.cs

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44

55
namespace BizHawk.Emulation.Cores.Nintendo.GBHawkLink4x
66
{
7-
[Core(CoreNames.GBHawkLink4x, "")]
7+
[Core(
8+
name: CoreNames.GBHawkLink4x,
9+
author: "alyosha and BizHawk contributors")]
810
public partial class GBHawkLink4x : IEmulator, ISaveRam, IDebuggable, IStatable, IInputPollable, IRegionable,
911
ISettable<GBHawkLink4x.GBLink4xSettings, GBHawkLink4x.GBLink4xSyncSettings>,
1012
ILinkedGameBoyCommon

src/BizHawk.Emulation.Cores/Consoles/Nintendo/SubGBHawk/SubGBHawk.cs

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44

55
namespace BizHawk.Emulation.Cores.Nintendo.SubGBHawk
66
{
7-
[Core(CoreNames.SubGbHawk, "")]
7+
[Core(
8+
name: CoreNames.SubGbHawk,
9+
author: "alyosha and BizHawk contributors")]
810
public partial class SubGBHawk : IEmulator, IStatable, IInputPollable,
911
ISettable<GBHawk.GBHawk.GBSettings, GBHawk.GBHawk.GBSyncSettings>, IDebuggable, ICycleTiming, IGameboyCommon
1012
{

src/BizHawk.Emulation.Cores/Consoles/Nintendo/SubNESHawk/SubNESHawk.cs

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33

44
namespace BizHawk.Emulation.Cores.Nintendo.SubNESHawk
55
{
6-
[Core(CoreNames.SubNesHawk, "")]
6+
[Core(
7+
name: CoreNames.SubNesHawk,
8+
author: "zeromus, natt, alyosha, adelikat")]
79
public partial class SubNESHawk : IEmulator, IStatable, IInputPollable, ISettable<NES.NES.NESSettings, NES.NES.NESSyncSettings>
810
{
911
[CoreConstructor(VSystemID.Raw.NES, Priority = CorePriority.SuperLow)]

src/BizHawk.Emulation.Cores/Consoles/Sega/GGHawkLink/GGHawkLink.cs

+4-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@
33

44
namespace BizHawk.Emulation.Cores.Sega.GGHawkLink
55
{
6-
[Core(CoreNames.GGHawkLink, "", isReleased: false)]
6+
[Core(
7+
name: CoreNames.GGHawkLink,
8+
author: "Vecna",
9+
isReleased: false)]
710
public partial class GGHawkLink : IEmulator, ISaveRam, IDebuggable, IStatable, IInputPollable, IRegionable, ILinkable,
811
ISettable<GGHawkLink.GGLinkSettings, GGHawkLink.GGLinkSyncSettings>
912
{

0 commit comments

Comments
 (0)