private void ZeropageToolStripMenuItem_Click(object sender, EventArgs e) { if (!FormExists("zeropage")) { MWFzeropage = new MemoryWatchForm(0x0, 0x0FF, this.Cpu) { Text = "ZeroPage", Tag = "zeropage" }; } MWFzeropage.LocationChanged += MWFzeropage_LocationChanged; MWFzeropage.Location = config.MwfZeropageLocation; MWFzeropage.Show(); this.Focus(); }
private void MemrangeToolStripMenuItem_Click(object sender, EventArgs e) { if (!FormExists("memrange")) { MWFmemrange = new MemoryWatchForm(this.Cpu) { Text = "Memory-Range", Tag = "memrange" }; } MWFmemrange.LocationChanged += MWFmemrange_LocationChanged; MWFmemrange.Location = config.MwfMemoryRangeLocation; MWFmemrange.Show(); this.Focus(); }
private void StackToolStripMenuItem_Click(object sender, EventArgs e) { if (!FormExists("stack")) { MWFstack = new MemoryWatchForm(0x100, 0x1FF, this.Cpu) { Text = "Stack", Tag = "stack" }; } MWFstack.LocationChanged += MWFstack_LocationChanged; MWFstack.Location = config.MwfStackLocation; MWFstack.Show(); this.Focus(); }