Esempio n. 1
0
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in .NET:
//ORIGINAL LINE: @Override public void write(StateOutputStream stream) throws java.io.IOException
        public virtual void write(StateOutputStream stream)
        {
            stream.writeVersion(STATE_VERSION);
            Emulator.Clock.write(stream);
            Emulator.Processor.write(stream);
            Emulator.Memory.write(stream);
            HLEModuleManager.Instance.write(stream);
            if (RuntimeContextLLE.LLEActive)
            {
                RuntimeContextLLE.write(stream);
                RuntimeContextLLE.createMMIO();
                RuntimeContextLLE.MMIO.write(stream);
                RuntimeContextLLE.MediaEngineProcessor.write(stream);
                RuntimeContextLLE.MediaEngineProcessor.MEMemory.write(stream);
            }
        }