Examples of convertToDecimal()


Examples of br.com.gmartins.simbler.helpers.HexConverter.convertToDecimal()

                hexToDec.setHexValue(lWord);
                strCmd.append(hexToDec.convertToDecimal());
            } else if (fWord.equals("F02")) {
                strCmd.append("MUL @");
                hexToDec.setHexValue(lWord);
                strCmd.append(hexToDec.convertToDecimal());
            } else if (fWord.equals("F08")) {
                strCmd.append("MUL ");
                strCmd.append(checkRegister(lWord));
            } else if (fWord.equals("F80")) {
                strCmd.append("DIV ");
View Full Code Here

Examples of br.com.gmartins.simbler.helpers.HexConverter.convertToDecimal()

                strCmd.append("MUL ");
                strCmd.append(checkRegister(lWord));
            } else if (fWord.equals("F80")) {
                strCmd.append("DIV ");
                hexToDec.setHexValue(lWord);
                strCmd.append(hexToDec.convertToDecimal());
            } else if (fWord.equals("F82")) {
                strCmd.append("DIV @");
                hexToDec.setHexValue(lWord);
                strCmd.append(hexToDec.convertToDecimal());
            } else if (fWord.equals("D88")) {
View Full Code Here

Examples of br.com.gmartins.simbler.helpers.HexConverter.convertToDecimal()

                hexToDec.setHexValue(lWord);
                strCmd.append(hexToDec.convertToDecimal());
            } else if (fWord.equals("F82")) {
                strCmd.append("DIV @");
                hexToDec.setHexValue(lWord);
                strCmd.append(hexToDec.convertToDecimal());
            } else if (fWord.equals("D88")) {
                strCmd.append("INC ");
                strCmd.append(checkRegister(lWord));
            } else if (fWord.equals("D82")) {
                strCmd.append("INC @");
View Full Code Here

Examples of br.com.gmartins.simbler.helpers.HexConverter.convertToDecimal()

                strCmd.append("INC ");
                strCmd.append(checkRegister(lWord));
            } else if (fWord.equals("D82")) {
                strCmd.append("INC @");
                hexToDec.setHexValue(lWord);
                strCmd.append(hexToDec.convertToDecimal());
            } else if (fWord.equals("D08")) {
                strCmd.append("DEC ");
                strCmd.append(checkRegister(lWord));
            } else if (fWord.equals("D02")) {
                strCmd.append("DEC @");
View Full Code Here

Examples of br.com.gmartins.simbler.helpers.HexConverter.convertToDecimal()

                strCmd.append("DEC ");
                strCmd.append(checkRegister(lWord));
            } else if (fWord.equals("D02")) {
                strCmd.append("DEC @");
                hexToDec.setHexValue(lWord);
                strCmd.append(hexToDec.convertToDecimal());
            } else if (fWord.equals("B88")) {
                strCmd.append("STORE ");
                strCmd.append(checkRegister(lWord));
            } else if (fWord.equals("B82")) {
                strCmd.append("STORE @");
View Full Code Here

Examples of br.com.gmartins.simbler.helpers.HexConverter.convertToDecimal()

                strCmd.append("STORE ");
                strCmd.append(checkRegister(lWord));
            } else if (fWord.equals("B82")) {
                strCmd.append("STORE @");
                hexToDec.setHexValue(lWord);
                strCmd.append(hexToDec.convertToDecimal());
            } else {
                hexToDec.setHexValue(cmd);
                strCmd.append("DB ");
                strCmd.append(hexToDec.convertToDecimal());
            }
View Full Code Here

Examples of br.com.gmartins.simbler.helpers.HexConverter.convertToDecimal()

                hexToDec.setHexValue(lWord);
                strCmd.append(hexToDec.convertToDecimal());
            } else {
                hexToDec.setHexValue(cmd);
                strCmd.append("DB ");
                strCmd.append(hexToDec.convertToDecimal());
            }
        } else {
            // Caso a linha esteja vazia, então define vazio em strCmd;
            strCmd.append("");
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.