Package HackGUI

Examples of HackGUI.BusComponent


        alu = new ALUComponent();
        a = new RegisterComponent();
        d = new RegisterComponent();
        pc = new RegisterComponent();
        setRegistersNames();
        bus = new BusComponent();
        jbInit();

        // Sets the top level location of RAM and ROM.
        ram.setTopLevelLocation(this);
        rom.setTopLevelLocation(this);
View Full Code Here


    /**
     * Constructs a new VMEmulatorGUI.
     */
    public VMEmulatorComponent() {
        bus = new BusComponent();
        screen = new ScreenComponent();
        keyboard = new KeyboardComponent();
        ram = new LabeledMemoryComponent();
        ram.setName("RAM");
        callStack = new CallStackComponent();
View Full Code Here

TOP

Related Classes of HackGUI.BusComponent

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.