Example #1
0
        public override bool Execute(string _cmd)
        {
            _cmd = _cmd.ToUpper();

            switch (_cmd)
            {
            case "CPU.START":
            {
                myC64.StartClock();
                return(true);
            }

            case "CPU.STOP":
            {
                myC64.StopClock();
                return(true);
            }
            }

            return(false);
        }