IDeviceState.cs 159 B

12345678
  1. namespace Ryujinx.Graphics.Device
  2. {
  3. public interface IDeviceState
  4. {
  5. int Read(int offset);
  6. void Write(int offset, int data);
  7. }
  8. }