Package se.sics.mspsim.core

Examples of se.sics.mspsim.core.Multiplier


        ramMirrorConfig(0x200, 2 * 1024, 0x1100);
    }

    public int setup(MSP430Core cpu, ArrayList<IOUnit> ioUnits) {

        Multiplier mp = new Multiplier(cpu, cpu.memory, 0);
        cpu.setIORange(0x130, 0x0f, mp);

        USCI usciA0 = new USCI(cpu, 0, cpu.memory, this);
        USCI usciB0 = new USCI(cpu, 1, cpu.memory, this);
        USCI usciA1 = new USCI(cpu, 2, cpu.memory, this);
View Full Code Here


        USART usart0 = new USART(cpu, 0, cpu.memory, 0x70);
        USART usart1 = new USART(cpu, 1, cpu.memory, 0x78);
        cpu.setIORange(0x70, 8, usart0);
        cpu.setIORange(0x78, 8, usart1);

        Multiplier mp = new Multiplier(cpu, cpu.memory, 0);
        cpu.setIORange(0x130, 0x0f, mp);

        // Usarts
        ioUnits.add(usart0);
        ioUnits.add(usart1);
View Full Code Here

TOP

Related Classes of se.sics.mspsim.core.Multiplier

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.