Esempio n. 1
0
        public string ToString(InstructionOutputFormat aFormat)
        {
            string Instruction = "";
            string tmp;

            switch (aFormat)
            {
            case InstructionOutputFormat.ASM:

                throw new Exception("Fix");
                //tmp = Size.ToString();
                if (tmp == "")
                {
                    return(Instruction);
                }

                Instruction += tmp + " ";



                return(Instruction);
            }

            return("Format not supported.");
        }
Esempio n. 2
0
        public string ToString( InstructionOutputFormat aFormat )
        {
            string Instruction = "";
            string tmp;
            switch( aFormat )
            {
                case InstructionOutputFormat.ASM:

								throw new Exception("Fix");
                    //tmp = Size.ToString();
                    if( tmp == "" )
                        return Instruction;

                    Instruction += tmp + " ";




                    return Instruction;
            }

            return "Format not supported.";
        }