diff --git a/src/BizHawk.Client.EmuHawk/BizHawk.Client.EmuHawk.csproj b/src/BizHawk.Client.EmuHawk/BizHawk.Client.EmuHawk.csproj
index 026c5f729f..108e1f614a 100755
--- a/src/BizHawk.Client.EmuHawk/BizHawk.Client.EmuHawk.csproj
+++ b/src/BizHawk.Client.EmuHawk/BizHawk.Client.EmuHawk.csproj
@@ -475,9 +475,6 @@
-
-
-
diff --git a/src/BizHawk.Client.EmuHawk/tools/Genesis/GenDbgWind.Designer.cs b/src/BizHawk.Client.EmuHawk/tools/Genesis/GenDbgWind.Designer.cs
deleted file mode 100644
index 2746610f3c..0000000000
--- a/src/BizHawk.Client.EmuHawk/tools/Genesis/GenDbgWind.Designer.cs
+++ /dev/null
@@ -1,109 +0,0 @@
-namespace BizHawk.Client.EmuHawk.tools.Genesis
-{
- partial class GenDbgWind
- {
- ///
- /// Required designer variable.
- ///
- private System.ComponentModel.IContainer components = null;
-
- ///
- /// Clean up any resources being used.
- ///
- /// true if managed resources should be disposed; otherwise, false.
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region Windows Form Designer generated code
-
- ///
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- ///
- private void InitializeComponent()
- {
- this.listBox1 = new System.Windows.Forms.ListBox();
- this.listBox2 = new System.Windows.Forms.ListBox();
- this.button1 = new System.Windows.Forms.Button();
- this.button2 = new System.Windows.Forms.Button();
- this.button3 = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // listBox1
- //
- this.listBox1.FormattingEnabled = true;
- this.listBox1.Location = new System.Drawing.Point(12, 12);
- this.listBox1.Name = "listBox1";
- this.listBox1.Size = new System.Drawing.Size(114, 264);
- this.listBox1.TabIndex = 0;
- //
- // listBox2
- //
- this.listBox2.FormattingEnabled = true;
- this.listBox2.Location = new System.Drawing.Point(132, 12);
- this.listBox2.Name = "listBox2";
- this.listBox2.Size = new System.Drawing.Size(120, 264);
- this.listBox2.TabIndex = 1;
- //
- // button1
- //
- this.button1.Location = new System.Drawing.Point(12, 282);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(75, 23);
- this.button1.TabIndex = 2;
- this.button1.Text = "Save";
- this.button1.UseVisualStyleBackColor = true;
- this.button1.Click += new System.EventHandler(this.button1_Click);
- //
- // button2
- //
- this.button2.Location = new System.Drawing.Point(132, 282);
- this.button2.Name = "button2";
- this.button2.Size = new System.Drawing.Size(75, 23);
- this.button2.TabIndex = 3;
- this.button2.Text = "Save";
- this.button2.UseVisualStyleBackColor = true;
- this.button2.Click += new System.EventHandler(this.button2_Click);
- //
- // button3
- //
- this.button3.Location = new System.Drawing.Point(70, 311);
- this.button3.Name = "button3";
- this.button3.Size = new System.Drawing.Size(75, 23);
- this.button3.TabIndex = 4;
- this.button3.Text = "Compare";
- this.button3.UseVisualStyleBackColor = true;
- this.button3.Click += new System.EventHandler(this.button3_Click);
- //
- // GenDbgWind
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(404, 365);
- this.Controls.Add(this.button3);
- this.Controls.Add(this.button2);
- this.Controls.Add(this.button1);
- this.Controls.Add(this.listBox2);
- this.Controls.Add(this.listBox1);
- this.Name = "GenDbgWind";
- this.Text = "GenDbgWind";
- this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.GenDbgWind_FormClosed);
- this.ResumeLayout(false);
-
- }
-
- #endregion
-
- private System.Windows.Forms.ListBox listBox1;
- private System.Windows.Forms.ListBox listBox2;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.Button button2;
- private System.Windows.Forms.Button button3;
- }
-}
\ No newline at end of file
diff --git a/src/BizHawk.Client.EmuHawk/tools/Genesis/GenDbgWind.cs b/src/BizHawk.Client.EmuHawk/tools/Genesis/GenDbgWind.cs
deleted file mode 100644
index 2af6293d11..0000000000
--- a/src/BizHawk.Client.EmuHawk/tools/Genesis/GenDbgWind.cs
+++ /dev/null
@@ -1,54 +0,0 @@
-using System;
-using System.Windows.Forms;
-using BizHawk.Emulation.Cores.Consoles.Sega.gpgx;
-
-namespace BizHawk.Client.EmuHawk.tools.Genesis
-{
- // see GenDbgHlp.cs for a general overview of this
- public partial class GenDbgWind : Form
- {
- private GenDbgHlp _dbg;
-
- public GenDbgWind()
- {
- InitializeComponent();
- for (int i = 0; i < 10; i++)
- {
- listBox1.Items.Add(i.ToString());
- listBox2.Items.Add(i.ToString());
- }
-
- _dbg = new GenDbgHlp();
- }
-
- private void button1_Click(object sender, EventArgs e)
- {
- if (listBox1.SelectedIndex != -1)
- {
- _dbg.SaveState(int.Parse((string)listBox1.SelectedItem));
- }
- }
-
- private void button2_Click(object sender, EventArgs e)
- {
- if (listBox2.SelectedIndex != -1)
- {
- _dbg.SaveState(int.Parse((string)listBox2.SelectedItem));
- }
- }
-
- private void button3_Click(object sender, EventArgs e)
- {
- if (listBox1.SelectedIndex != -1 && listBox2.SelectedIndex != -1)
- {
- _dbg.Cmp(int.Parse((string)listBox1.SelectedItem), int.Parse((string)listBox2.SelectedItem));
- }
- }
-
- private void GenDbgWind_FormClosed(object sender, FormClosedEventArgs e)
- {
- _dbg.Dispose();
- _dbg = null;
- }
- }
-}
diff --git a/src/BizHawk.Client.EmuHawk/tools/Genesis/GenDbgWind.resx b/src/BizHawk.Client.EmuHawk/tools/Genesis/GenDbgWind.resx
deleted file mode 100644
index 29dcb1b3a3..0000000000
--- a/src/BizHawk.Client.EmuHawk/tools/Genesis/GenDbgWind.resx
+++ /dev/null
@@ -1,120 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- text/microsoft-resx
-
-
- 2.0
-
-
- System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
\ No newline at end of file