Example #1
0
        /*******************************************************************************
         ***                      PASSDUO function                                    ***
         ********************************************************************************
         *** DESCRIPTION: This Pass 2 funciton takes in information from the .tmp     ***
         *** file and outputs the Object Code for each line that applies, and then    ***
         *** creates the object program to the assembly code that was given intially. ***
         ********************************************************************************
         *** INPUT ARGS: List<Node_Op> ops, Node_Sym table, Node_Lit lit, string file ***
         *** OUTPUT ARGS: N/A                                                         ***
         *** IN/OUT ARGS: N/A                                                         ***
         *** RETURN: Node_P2 p2                                                       ***
         ********************************************************************************/

        public Node_P2 PassDuo(List <Node_Op> ops, Node_Sym table, Node_Lit lit, string file)
        {
            Node_P2   p2     = new Node_P2();
            Node_Op   op     = new Node_Op();
            NIXBPE    nixbpe = new NIXBPE();
            Node_Sym  sym    = new Node_Sym();
            Node_Exp  ex     = new Node_Exp();
            Registers reg    = new Registers();

            Literal_Table litTab = new Literal_Table();
            Expressions   Exp    = new Expressions();
            OpCodes       opCode = new OpCodes();
            Symbol_Table  syTab  = new Symbol_Table();
            List <string> codes  = new List <string>();
            List <string> mrec   = new List <string>();

            string[] Prog = File.ReadAllLines(file);

            int    lnum;
            string counter;
            string label = null;
            string operation;
            string operand    = null;
            string rrec       = null;
            string drec       = null;
            string prog_len   = "00000";
            string prog_start = "00000";
            string prog_name  = "00000";

            string Obj_Code = null;

            string[] splitLine;
            string   tmpStr;
            string   tmpFmt     = null;
            bool     Base_bit   = false;
            string   Base_Label = null;

            foreach (string line in Prog)
            {
                splitLine = line.Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
                if (splitLine.Length != 1)
                {
                    //SETS LINE NUMBER
                    if (Int32.TryParse(splitLine[0], out lnum))
                    {
                    }
                    ;

                    //SETS LOAD COUNTER
                    counter = splitLine[1];

                    //SETS LABEL
                    if (splitLine.Length == 5)
                    {
                        label     = splitLine[2].ToUpper();
                        splitLine = splitLine.Where(w => w != splitLine[0]).ToArray();
                    }
                    else
                    {
                        tmpStr = splitLine[2];
                        if (tmpStr[0] != '+' && opCode.search(ops, tmpStr) == null)
                        {
                            label     = tmpStr.ToUpper();
                            splitLine = splitLine.Where(w => w != splitLine[2]).ToArray();
                        }
                    }

                    //SETS OPERATION
                    operation = splitLine[2].ToUpper();

                    //SETS OPERAND
                    if (splitLine.Length > 3)
                    {
                        operand = splitLine[3];
                    }

                    if (label == Base_Label && int.Parse(counter, System.Globalization.NumberStyles.HexNumber) > int.Parse("7FF", System.Globalization.NumberStyles.HexNumber))
                    {
                        syTab.search(table, label).value = SubHex(counter, "7FF").TrimStart('0').PadLeft(5, '0');
                    }
                    else
                    {
                        if (operation == "START")
                        {
                            prog_start = splitLine[3]; //FOR THE HEADER
                            prog_name  = label;        //FOR THE HEADER
                        }
                        else if (operation != "END")
                        {
                            //FORMAT 4 CHECK
                            if (operation[0] != '+')
                            {
                                op = opCode.search(ops, operation);
                            }
                            else
                            {
                                tmpStr = operation.TrimStart('+');
                                op     = opCode.search(ops, tmpStr);
                                tmpFmt = "4";
                            }

                            if (op == null)
                            {
                                if (operation == "BASE")
                                {
                                    Base_Label = operand;
                                }
                                else if (operation == "BYTE")
                                {
                                    if (operand[0] == 'X')
                                    {
                                        Obj_Code = operand.TrimStart('X', '\'').TrimEnd('\'').PadLeft(6, '0');
                                    }
                                    else
                                    {
                                        Obj_Code = BitConverter.ToString(Encoding.Default.GetBytes(operand.TrimStart('\'', 'C', 'c').TrimEnd('\''))).Replace("-", "").PadLeft(6, '0');
                                    }
                                }
                                else if (operation == "EQU")
                                {
                                }
                                else if (operation == "EXTDEF")
                                {
                                    foreach (string n in operand.Split(','))
                                    {
                                        drec = drec + "^" + n + "^" + syTab.search(table, TrimOp(n)).value;
                                    }
                                }
                                else if (operation == "EXTREF")
                                {
                                    foreach (string n in operand.Split(','))
                                    {
                                        rrec = rrec + "^" + n;
                                    }
                                }
                                else if (operation == "RESB")
                                {
                                }
                                else if (operation == "RESW")
                                {
                                }
                                else if (operation == "WORD")
                                {
                                    Obj_Code = int.Parse(operand, System.Globalization.NumberStyles.HexNumber).ToString("X").PadLeft(6, '0');
                                    if (operand.Contains('+') || operand.Contains('-'))
                                    {
                                        mrec.Add("M^" + AddHex(counter.PadLeft(6, '0'), "1") + "^06^");
                                    }
                                }
                            }
                            else if (tmpFmt != null)
                            {
                                nixbpe = setNIXBPE(table, operation, operand, Base_bit);
                                if (operand[0] == '#')
                                {
                                    Obj_Code = ObjPtOne(op.code, nixbpe) + counter;
                                }
                                else if (operand[0] == '@')
                                {
                                    Obj_Code = ObjPtOne(op.code, nixbpe) + Exp.insert(table, operand).value;
                                }
                                else
                                {
                                    Obj_Code = ObjPtOne(op.code, nixbpe) + Exp.insert(table, operand).value;
                                }
                                mrec.Add("M^" + AddHex(counter, "1").PadLeft(6, '0') + "^05^+" + operand.TrimStart('@', '#').TrimEnd(',', 'X'));
                            }
                            else
                            {
                                if (op.format == "1")
                                {
                                    Obj_Code = op.code;
                                }
                                else if (op.format == "2")
                                {
                                    Obj_Code = op.code + fmt2(operand);
                                }
                                else if (op.format == "3")
                                {
                                    nixbpe = setNIXBPE(table, operation, operand, Base_bit);
                                    if (nixbpe.n == true && nixbpe.i == false && nixbpe.x == false)  //IF INDIRECT '@'
                                    {
                                        Obj_Code = ObjPtOne(op.code, nixbpe) + SubHex(Exp.insert(table, operand).value, getNext(op, counter)).TrimStart('0').PadLeft(3, '0');
                                    }
                                    else if (nixbpe.n == false && nixbpe.i == true && nixbpe.x == false)  //IF IMMEDIATE '#'
                                    {
                                        Obj_Code = ObjPtOne(op.code, nixbpe) + Exp.insert(table, operand).value.TrimStart('0').PadLeft(3, '0');
                                    }
                                    else if (nixbpe.n == false && nixbpe.i == false && nixbpe.x == true)  //IF INDEXED ',X'
                                    {
                                        Obj_Code = ObjPtOne(op.code, nixbpe) + SubHex(Exp.insert(table, operand).value, getNext(op, counter)).TrimStart('0').PadLeft(3, '0');
                                    }
                                    else
                                    {
                                        if (operand[0] == '=')
                                        {
                                            Obj_Code = ObjPtOne(op.code, nixbpe) + SubHex(litTab.search(lit, operand).address, getNext(op, counter)).TrimStart('0').PadLeft(3, '0');
                                        }
                                        else
                                        {
                                            Obj_Code = ObjPtOne(op.code, nixbpe) + SubHex(Exp.insert(table, operand).value, getNext(op, counter)).TrimStart('0').PadLeft(3, '0');
                                        }
                                    }
                                }
                            }
                        }
                    }

                    if (operation == "*")
                    {
                        Obj_Code = litTab.search(lit, operand).value;
                    }
                }
                else
                {
                    prog_len = splitLine[0];
                }

                //ADD THE OBJ CODE TO THE P2 NODE
                if (splitLine.Length != 1)
                {
                    p2.prog.Add(line + string.Format("{0,-10}", Obj_Code));
                }

                if (Obj_Code != null)
                {
                    codes.Add(Obj_Code);
                }

                //SET VARIABLES BACK TO NULL
                tmpFmt   = null;
                tmpStr   = null;
                label    = null;
                Obj_Code = null;
            }

            p2.obj_prog.Add("H^" + prog_name + "^" + prog_start.PadLeft(5, '0') + "^" + prog_len.PadLeft(5, '0'));
            if (drec != null)
            {
                p2.obj_prog.Add("D" + drec);
            }
            if (rrec != null)
            {
                p2.obj_prog.Add("R" + rrec);
            }
            p2.obj_prog = T_Records(p2.obj_prog, codes);
            foreach (string m in mrec)
            {
                p2.obj_prog.Add(m);
            }
            p2.obj_prog.Add("E^" + prog_start.PadLeft(6, '0'));
            return(p2);
        }
Example #2
0
        static void Main(string[] args)
        {
            Node_P1        p1      = new Node_P1();
            Node_P2        p2      = new Node_P2();
            OpCodes        OpCodes = new OpCodes();
            PassOne        passOne = new PassOne();
            PassTwo        passTwo = new PassTwo();
            Literal_Table  LitTab  = new Literal_Table();
            Symbol_Table   SymTab  = new Symbol_Table();
            List <Node_Op> op      = new List <Node_Op>();

            string opCodes = "OPCODES.DAT";
            string srcProg;

            if (args.Length == 0)
            {
                Console.Write("Please Enter File Path for Source file --> ");
                srcProg = Console.ReadLine();
            }
            else
            {
                srcProg = args[0];
            }


            while (true)
            {
                if (!File.Exists(opCodes))
                {
                    Console.WriteLine("OPSCODE FILE: '{0}' does not exist...", opCodes);
                    Console.Write("Please enter correct file path (Type 'x' to exit) -->  ");
                    opCodes = Console.ReadLine();
                    if (opCodes == "x")
                    {
                        break;
                    }
                    Console.WriteLine();
                }
                else if (!File.Exists(srcProg))
                {
                    Console.WriteLine("SOURCE FILE: '{0}' does not exist...", srcProg);
                    Console.Write("Please enter correct file path (Type 'x' to exit) -->  ");
                    srcProg = Console.ReadLine();
                    if (srcProg == "x")
                    {
                        break;
                    }
                    Console.WriteLine();
                }
                else
                {
                    string[] Codes = File.ReadAllLines(opCodes);
                    string[] opLine;

                    string file = string.Format(srcProg, ".tmp");

                    //Populate the Opcodes
                    foreach (string code in Codes)
                    {
                        opLine = code.Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
                        op.Add(OpCodes.insert(opLine));
                    }

                    //PASS ONE
                    p1 = passOne.PassUno(srcProg, op);

                    //PASS ONE TO FILES
                    string tmpFile1 = srcProg.Substring(0, srcProg.LastIndexOf(".")) + ".tmp";
                    File.WriteAllLines(tmpFile1, p1.prog);

                    //PASS TWO
                    p2 = passTwo.PassDuo(op, p1.table, p1.lit, tmpFile1);

                    //PASS TWO TO FILES
                    string tmpFile2 = srcProg.Substring(0, srcProg.LastIndexOf(".")) + ".txt";
                    File.WriteAllLines(tmpFile2, p2.prog);

                    string tmpFile3 = srcProg.Substring(0, srcProg.LastIndexOf(".")) + ".o";
                    File.WriteAllLines(tmpFile3, p2.obj_prog);

                    //PRINTS PASS 2 w/ Length
                    Console.WriteLine("------------");
                    Console.WriteLine("PASS 2");
                    Console.WriteLine("------------");
                    foreach (string p in p2.prog)
                    {
                        Console.WriteLine(p);
                    }
                    Console.WriteLine("Program Length = {0}", p1.length);
                    Console.WriteLine("Press enter to continue...");
                    Console.ReadLine();

                    //PRINTS OBJECT PROGRAM
                    Console.WriteLine("------------------");
                    Console.WriteLine("OBJECT PROGRAM");
                    Console.WriteLine("------------------");
                    foreach (string o in p2.obj_prog)
                    {
                        Console.WriteLine(o);
                    }
                    Console.WriteLine("Press enter to continue...");
                    Console.ReadLine();

                    //PRINTS SYMBOL TABLE
                    Console.WriteLine("---------------");
                    Console.WriteLine("SYMBOL TABLE");
                    Console.WriteLine("---------------");
                    Console.WriteLine("{0,-10} {1,-10} {2,-10} {3,-10} {4,-10}", "SYMBOL:", "VALUE:", "RFLAG:", "MFLAG:", "IFLAG:");
                    Console.WriteLine(new string('-', 50));
                    SymTab.view(p1.table);
                    Console.WriteLine("Press enter to continue...");
                    Console.ReadLine();

                    //PRINTS LITERAL TABLE
                    Console.WriteLine("-----------------");
                    Console.WriteLine("LITERAL TABEL");
                    Console.WriteLine("-----------------");
                    Console.WriteLine("{0,-10} {1,-10} {2,-10} {3,-10}", "NAME:", "VALUE:", "LENGTH:", "ADDRESS:");
                    Console.WriteLine(new string('-', 40));
                    LitTab.view(p1.lit);
                    Console.WriteLine("Press enter to Complete Pass Two...");
                    break;
                }
            }
            Console.ReadLine();
        }