示例#1
0
        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();
        }
示例#2
0
        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();
        }
示例#3
0
        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();
        }