NvHostChannelMapBuffer.cs 331 B

123456789101112
  1. using System.Runtime.InteropServices;
  2. namespace Ryujinx.HLE.HOS.Services.Nv.NvHostChannel
  3. {
  4. [StructLayout(LayoutKind.Sequential, Size = 0xc, Pack = 4)]
  5. struct NvHostChannelMapBuffer
  6. {
  7. public int NumEntries;
  8. public int DataAddress; //Ignored by the driver.
  9. public bool AttachHostChDas;
  10. }
  11. }