Ejemplo n.º 1
0
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in .NET:
//ORIGINAL LINE: @Override public void write(pspsharp.state.StateOutputStream stream) throws java.io.IOException
        public virtual void write(StateOutputStream stream)
        {
            stream.writeVersion(STATE_VERSION);
            cpu.write(stream);
            cp0.write(stream);
            stream.writeBoolean(interruptsEnabled);
        }
Ejemplo n.º 2
0
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in .NET:
//ORIGINAL LINE: @Override public void write(pspsharp.state.StateOutputStream stream) throws java.io.IOException
        public override void write(StateOutputStream stream)
        {
            stream.writeVersion(STATE_VERSION);
            stream.writeInts(vmeRegisters);
            stream.writeBoolean(halt_Renamed);
            stream.writeInt(pendingInterruptIPbits);
            base.write(stream);
        }
Ejemplo n.º 3
0
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in .NET:
//ORIGINAL LINE: @Override public void write(pspsharp.state.StateOutputStream stream) throws java.io.IOException
        public override void write(StateOutputStream stream)
        {
            stream.writeVersion(STATE_VERSION);
            stream.writeInt(control);
            stream.writeInt(status);
            stream.writeInt(command);
            stream.writeInt(pageAddress);
            stream.writeInts(data);
            stream.writeInt(dataIndex);
            stream.writeInt(dmaAddress);
            stream.writeInt(dmaControl);
            stream.writeInt(dmaStatus);
            stream.writeInt(dmaInterrupt);
            stream.writeInt(unknown200);
            stream.writeBoolean(needPageAddress);
            base.write(stream);
        }