Package com.loomcom.symon.devices

Examples of com.loomcom.symon.devices.SdController


        this.bus = new Bus(BUS_BOTTOM, BUS_TOP);
        this.cpu = new Cpu();
        this.ram = new Memory(MEMORY_BASE, MEMORY_BASE + MEMORY_SIZE - 1, false);
        this.acia = new Acia6850(ACIA_BASE);
        this.acia.setBaudRate(0);
        this.sdController = new SdController(SD_BASE);

        bus.addCpu(cpu);
        bus.addDevice(ram);
        bus.addDevice(acia, 1);
        bus.addDevice(sdController, 1);
View Full Code Here

TOP

Related Classes of com.loomcom.symon.devices.SdController

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.