Package HackGUI

Examples of HackGUI.PointedMemoryComponent


     */
    public RAM(int size) {
        values = new short[size];

        if (GatesManager.getInstance().isChipsGUIEnabled()) {
            memoryGUI = new PointedMemoryComponent();
            memoryGUI.setContents(values);
            memoryGUI.setVisibleRows(8);
            memoryGUI.setLocation(166, 10);
            memoryGUI.addListener(this);
            memoryGUI.addErrorListener(this);
View Full Code Here


     * Constructs a new CPUEmulatorComponent.
     */
    public CPUEmulatorComponent() {
        screen = new ScreenComponent();
        keyboard = new KeyboardComponent();
        ram = new PointedMemoryComponent();
        ram.setName("RAM");
        rom = new ROMComponent();
        rom.setName("ROM");
        alu = new ALUComponent();
        a = new RegisterComponent();
View Full Code Here

TOP

Related Classes of HackGUI.PointedMemoryComponent

Copyright © 2018 www.massapicom. 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.