Atari 2600 debugger - use RequiredService

This commit is contained in:
adelikat 2014-12-17 01:29:21 +00:00
parent 3f15ae4e91
commit 78d462dda3
1 changed files with 2 additions and 1 deletions
BizHawk.Client.EmuHawk/tools/Atari2600

View File

@ -26,7 +26,8 @@ namespace BizHawk.Client.EmuHawk
// Video Frame advance
// Add to toolbox
private Atari2600 _core = Global.Emulator as Atari2600;
[RequiredService]
private Atari2600 _core { get; set; }
private readonly List<string> _instructions = new List<string>();
private readonly AtariBreakpointList Breakpoints = new AtariBreakpointList();