Package org.tc65sh.ui

Examples of org.tc65sh.ui.UserInterface


    public void exec(String[] args) throws Exception {
        String portname = DEFAULT_PORTNAME;
        Log.logLevel = Log.LOG_INFO;
        Log.info("tc65sh v" + VERSION_STRING);
        UserInterface ui = null;
        for (int i = 0; i < args.length; i++) {
            if (args[i].equals("-p") || args[i].equals("--portname")) {
                portname = args[i + 1];
            } else if (args[i].equals("-b") || args[i].equals("--baudrate")) {
                baudrate = Integer.parseInt(args[i + 1]);
View Full Code Here

TOP

Related Classes of org.tc65sh.ui.UserInterface

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.