Ejemplo n.º 1
0
        //--------------------------------------------------------------
        // Purpose: Executes a single step of the program in memory
        // Returns: nothing
        //--------------------------------------------------------------
        private void SingleStep()
        {
            Computer.TestInstructions();
            ArrayList items = new ArrayList();

            items.Add(tracefile);
            items.Add(this);
            try { stepThread.RunWorkerAsync(items); }
            catch { }
        }