Beispiel #1
0
 public new void StoreSaveRam(byte[] data)
 {
     if (!_neopop.PutSaveRam(data, data.Length))
     {
         throw new InvalidOperationException("Core rejected the saveram");
     }
 }
Beispiel #2
0
		public new void StoreSaveRam(byte[] data)
		{
			_exe.AddTransientFile(data, "SAV:flash");
			if (!_neopop.PutSaveRam())
				throw new InvalidOperationException("Core rejected the saveram");
			_exe.RemoveTransientFile("SAV:flash");
		}