Example #1
0
 public VMemStream(MipsR4300Core core)
 {
     m_Core = core;
     m_Cp0Regs = core.State.CP0Regs;
     m_TLBCache = new TLBCache(core.State);
     SetupOperations(false);
 }
Example #2
0
        public static void SetMipsCore(MipsR4300Core core)
        {
            m_Core = core;

            LastPc        = 0xa4000040;
            NextInterrupt = 624999;
            InitInterrupt();
        }
 internal void SetParent(MipsR4300Core currentProcessor)
 {
     m_MipsParent = currentProcessor;
 }