Implemented SNA files. More OpCodes. Chuckie Egg Title SCreen!
This commit is contained in:
@@ -88,6 +88,18 @@ namespace Desktop
|
||||
}
|
||||
}
|
||||
}
|
||||
private void openSNAToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
using (OpenFileDialog ofd = new OpenFileDialog())
|
||||
{
|
||||
ofd.Filter = "Spectrum Snapshot Files (*.sna)|*.sna";
|
||||
if (ofd.ShowDialog() == DialogResult.OK)
|
||||
{
|
||||
byte[] snaBytes = System.IO.File.ReadAllBytes(ofd.FileName);
|
||||
_cpu.LoadSNA(snaBytes);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Public so the Debugger's background thread can call it 50 times a second
|
||||
public void RenderScreen()
|
||||
|
||||
Reference in New Issue
Block a user