Package Hack.ComputerParts

Examples of Hack.ComputerParts.TextFileGUI.reset()


        try {
            comparisonReader = new BufferedReader(new FileReader(comparisonFileName));

            if (getGui() != null) {
                TextFileGUI comp = ((HackAssemblerGUI) getGui()).getComparison();
                comp.reset();
                comp.setContents(comparisonFileName);

                comparisonProgram = new short[comp.getNumberOfLines()];
                for (int i = 0; i < comp.getNumberOfLines(); i++) {
                    if (comp.getLineAt(i).length() != Definitions.BITS_PER_WORD) {
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.