Esempio n. 1
0
 /***************************Successor***********************************
 * Successor(char RegNumber, ref Load obj, ref GroupBox gb) Function is *
 * used to increase the current value in Register by 1                  *
 *- RegNumber: Represent the Index of Register place in memory          *
 ************************************************************************/
 private void Successor(char RegNumber, ref Load obj, ref GroupBox gb)
 {
     int index = int.Parse(RegNumber.ToString());
     int Regvalue = obj.Get_RegArray(index);
     Regvalue++;
     obj.Set_RegArray(index, Regvalue.ToString());
 }
Esempio n. 2
0
 /**************************************** Jumb *********************************************
 * jumb(char Reg1_Number, char Reg2_Number, char GotoLineN, ref Load obj, ref int iterat)   *
 * this Function is used to act like if so if(Reg1_Number's values==Reg2_Number's values)   *
 *  it will execute the line with index (GotoLineN) and keep executing the Sequence again   *
 *-Regn_Number: Represent the Index of Register place in memory     n=(1 or 2)              *
 *-GotoLineN: Represent the number of line that it will be executed if the Condition is True*
 *-iterat:Represent the current value of execution iterator, is passed by ref to be able to *
 *  Modify it's value to the "GotoLineN" value which Represent the Line number that will be *
 *  executed if the Condition is true                                                       *
 *******************************************************************************************/
 private void jumb(char Reg1_Number, char Reg2_Number, char GotoLineN, ref Load obj, ref int iterat)
 {
     int Reg1_index = int.Parse(Reg1_Number.ToString());
     int Reg2_index = int.Parse(Reg2_Number.ToString());
     int temp1 = obj.Get_RegArray(Reg1_index);
     int temp2 = obj.Get_RegArray(Reg2_index);
     if (temp1 == temp2)
     {
         iterat = int.Parse(GotoLineN.ToString()) - 2;
     }
 }
Esempio n. 3
0
 private void btnClearAll_Click(object sender, EventArgs e)
 {
     for (int i = 1; i < 9; i++)
     {
         grpbxRegisters.Controls["txtR" + (i).ToString()].Text = string.Empty;
     }
     richtxtCode.Text = string.Empty;
     loadData = null;
     GC.Collect();
     GC.WaitForPendingFinalizers();
     this.monitor.ClearDataGrid();
     lblStat.Text = "Cleared";
 }
Esempio n. 4
0
 public void Execute(string CharSummary, ref Load obj, ref GroupBox gb, ref int iterat)
 {
     if (CharSummary[0] == 'Z' || CharSummary[0] == 'z')
     {
         Zero(CharSummary[1], ref obj, ref gb);
     }
     else if (CharSummary[0] == 'S' || CharSummary[0] == 's')
     {
         Successor(CharSummary[1], ref obj, ref gb);
     }
     else if (CharSummary[0] == 'T' || CharSummary[0] == 't')
     {
         Trans(CharSummary[1], CharSummary[2], ref obj, ref gb);
     }
     else if (CharSummary[0] == 'J' || CharSummary[0] == 'j')
     {
         jumb(CharSummary[1], CharSummary[2], CharSummary[3], ref obj, ref iterat);
     }
     else
         return;
 }
Esempio n. 5
0
 private void Load_Data()
 {
     loadData = new Load(richtxtCode.Lines.Length);
     loadData.STO_RegArray(txtR1.Text, txtR2.Text, txtR3.Text, txtR4.Text, txtR5.Text, txtR6.Text, txtR7.Text, txtR8.Text);
     loadData.STO_CodeArray(richtxtCode.Lines);
     //Enable executing buttons
     btnExecute.Enabled = true;
     btnNext.Enabled = true;
     btnStop.Enabled = false;
     if (monitor != null)
         monitor.Close();
 }
Esempio n. 6
0
 private void loadToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (richtxtCode.Text == string.Empty)
         MessageBox.Show("There is nothing to Load !", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
     else
     {
         loadData = new Load(richtxtCode.Lines.Length);
         Load_Data();
     }
 }
Esempio n. 7
0
 /********************************* Trans *********************************************
 *Trans(char Reg1_Number, char Reg2_Number, ref Load obj, ref GroupBox gb) Function is*
 *used to Transfere the value from Reg1_number and place it Reg2_Number               *
 *RegNumber: Represent the Index of Register place in memory                          *
 *************************************************************************************/
 private void Trans(char Reg1_Number, char Reg2_Number, ref Load obj, ref GroupBox gb)
 {
     int Reg1_index = int.Parse(Reg1_Number.ToString());
     int Reg2_index = int.Parse(Reg2_Number.ToString());
     int temp = obj.Get_RegArray(Reg1_index);
     obj.Set_RegArray(Reg2_index, temp.ToString());
 }
Esempio n. 8
0
 /******************* Funcitions-Documentation ***********************
 *- obj: is where the Function get or set the Data of Register       *
 * and is passed by Ref to apply the modification to the original    *
 * Load object.                                                      *
 *-gb: is the group box that contain the textbox controls            *
 * that Represent the Registers(set Data or Show its Contained Value *
 * passed by Ref to apply changes to the original controls(textbox's)*
 *********************************************************************/
 /******************************Zero**********************************
 * Zero(char RegNumber,,ref Load obj,ref GroupBox gb) Function is    *
 * used to convert the Register Value Form n to zero                 *
 *- RegNumber: Represent the Index of Register place in memory       *
 ********************************************************************/
 private void Zero(char RegNumber, ref Load obj, ref GroupBox gb)
 {
     int index = int.Parse(RegNumber.ToString());
     obj.Set_RegArray(index, "0");
 }
Esempio n. 9
0
        /******************* Funcitions-Documentation ***********************
         *- obj: is where the Function get or set the Data of Register       *
         * and is passed by Ref to apply the modification to the original    *
         * Load object.                                                      *
         *-gb: is the group box that contain the textbox controls            *
         * that Represent the Registers(set Data or Show its Contained Value *
         * passed by Ref to apply changes to the original controls(textbox's)*
         *********************************************************************/
        /******************************Zero**********************************
        * Zero(char RegNumber,,ref Load obj,ref GroupBox gb) Function is    *
        * used to convert the Register Value Form n to zero                 *
        *- RegNumber: Represent the Index of Register place in memory       *
        ********************************************************************/
        private void Zero(char RegNumber, ref Load obj, ref GroupBox gb)
        {
            int index = int.Parse(RegNumber.ToString());

            obj.Set_RegArray(index, "0");
        }