Ejemplo n.º 1
0
        public InstructionExit HandleUUO(SimhPDP10CPU processor, ulong instruction, OpCodes opcode, int ac, ulong ea)
        {
            switch ((CALLIs)ea)
            {
            case CALLIs.GETTAB:
                return(GETTAB.Execute(Monitor, processor, instruction, opcode, ac, ea));

            case CALLIs.CORE:
                return(CORE.Execute(Monitor, processor, instruction, opcode, ac, ea));

            case CALLIs.EXIT:
                return(InstructionExit.IntentionalExit);

            default:
                return(InstructionExit.UnimplementedMonitorCall);
            }
        }